Netbeans branding localization - java

I have done branding of pice of my Netbeans application according this article Link
But I dont understand, how can I localize it? Is it possible?
Thanks a lot!

I don't see any relationship between the link you provided and the localization.
You can read the following articles in order to getting started with localization. You need resource bundles.
Java Internationalization
Internationalization

Related

How to create a documentation module in OpenXava?

I need a documentation module in my OpenXava application. Basically it's to allow the user consult the manual in case of doubt.
I think in HTML format.
I saw in the OpenXava documentation the possibility of creating a documentation module:
https://openxava.org/OpenXavaDoc/docs/application_en.html#Application-Documentation%20module
But it only works with Liferay or WebSphere Portal.
Is there a way to do it wihout Liferay or WebSphere Portal?
It is true that the documentation modules are only available within a portal, however the help system works without portal and I think it's just what you're looking for. It can be activated configuring some properties in xava.properties.
Note the Help part in the following doc:
https://openxava.org/OpenXavaDoc/docs/customizing_en.html#Customizing-Xava%20Properties%20Settings
Something like this in xava.properties could work for you:
helpAvailable=true
helpPrefix=help/
If the help is a folder called 'help' inside your application.
Also you can put the help in another server:
helpPrefix=https://www.example.com/help
If it ends with underscore it can have multilanguage support, thus:
helpPrefix=https://www.example.com/myapplication/help_
Where it looks for help_en.html, help_es.html or help_fr.html, depending on the browser language.

Using Javadocs with Wikispaces

I am working on a team for a class, and we have written a very large amount of code. Luckily for us, we were diligent in adding javadoc annotations to everything, so we should be able to create the documentation very easily. For the class however, we are required to have all of our documentation on a wikispace page.
Some of the pages will be javadoc, some of them will be plain text. Is there an easy way to convert javadocs to wiki pages, or embed javadocs into wiki pages? Thanks!
I haven't tried this myself, but maybe doxygen(http://www.doxygen.nl/) in conjunction with this tool (https://code.google.com/p/doxy2wiki/) may be able to solve your problem.

Issues regarding building xforms editor?

Sorry this question might look a bit vague. But my problem description is I want to build an xForm editor (preferably in GWT). I would be very grateful if someone can suggest me some hints, links or material that I should be looking into to answer my following questions.
How I can generate the equivalent xml code as I drag and drop the controls in the editor?
And then how to ensure that this generated xml adheres to the xforms schema definition?
You can see how Orbeon Form builder works and if you think you want to develop something similar to that, then try looking at the code. Since Orbeon is open source developed on Java/J2EE you can get the source code. This would be a good starting point.
Cheers.

Commenting tool/library

I developed web based application (spring+hibernate+jQuery) that
contains articles. I need some tool/plugin/framework/library to organise
comments these articles by users of this application.
I searched the internet and found only one
http://www.9lessons.info/2011/05/facebook-wall-script-with-php-and.html
It use jQuery+PHP.
Please, help with other tools on Java+jQuery
Best regards, Pavel
If you are asking for comment management then you should take a look at:
http://disqus.com/
http://www.livefyre.com/

Java Jackcess Library Documentation?

I need to read and write some data on .mdb Access file and over the web I found the Jackcess library that that does exactly that.
Unfortunately I could't find any documentation to use that. On the library website there are a couple of examples, but no real documentation. Can anyone tell me if there's some sort of documentation somewhere?
The javadoc is intended to be fairly explanatory. The primary classes would be Database and Table. The library is also heavily unit tested, so you can dig into the unit test code to see many examples. There isn't currently a great "getting started" document. It has been discussed before, but, unfortunately no one has picked up the ball on actually writing it. That said, the help forum is actively monitored.
UPDATE:
There is now a cookbook, which is the beginnings of a more comprehensive user-level documentation.
You can use jackcess-orm that use DAO pattern and POJO with annotations.

Categories