Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I was wondering if any of you knew of eclipse plugins that scan your code for internationalization issues? Things like embedded strings or locale-sensitive methods.
I looked on google and there were alot of articles on HOW to internationalize an eclipse plugin but none that support it.
Thanks in advance!
I believe internationalization is a complex issue, and every language/framework/you-name-it which deals with i18n does it differently. So, my guess is there is no such plugin, and will not be in the near future.
The only plugin I found is Eclipse I18N Properties File Editor which addresses a specific file type, but chances are you don't need this one in particular.
The closest you can get in Java is with the help of below tools
getext-commons - it can help you in Easy extraction of user visible strings etc
JRC Editor - it can help you in managing resource bundles. For e.g. it can tell you if a given key has translation missing for any supported locale of your application
Although this is an old question, thought to share TapiJI as a good option in case someone is still searching
https://code.google.com/a/eclipselabs.org/p/tapiji/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have pretty standard java project with standard gradle layout, all sources are stored in git. I want to write documentation in markdown (or similar markup language) and keep all files in project directory (e.g. docs/ folder in the root). Then I want to generate static site or push my sources somewhere to have access to full documentation in html (should be self-hosted solution).
It will be good if I'm able to add simple link to other articles (like I do it in any wiki engine by using [[article]]). And It would be perfect if I've been able to add quick links to javadoc by the same technique as link to articles. And also it would be perfect if it has had built-in search engine.
I've gone through couple of static site generators but I didn't find anything which can satisfy my requirements at least half. Is there something like that? Or I need to code it by myself (I know it won't take to much time)? Maybe there's more common use case for documentation?
You have to use the concept of Doclets. There are some out there. Maybe just try this one:
https://github.com/Abnaxos/pegdown-doclet
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
apologies if the question is a duplicate.
Actually I am looking for a automated checking tool to identify:
the missing javadoc,
incomplete javadoc or
missing brief
test and identify spelling or grammar mistakes in javadoc comments.
I know there are few tools available to do these things such as checkstyle and open javadoc check etc. But I would need suggestions if there are any more tools available if yes, which one would be more suitable for my need.
IDEs (Integrated Development Environments) commonly include spell-checking in javadocs and comments. I know that Eclipse definitely does ( http://www.eclipse.org/downloads/ - pick IDE for java developers 150mb).
Also, you shouldn't have to apoligize for whether the question is a duplicate - your first resource should be to google, your second resource SO search, and your third resource the "Similar Questions" box you get while typing your title.
About spelling and grammar - do you do code reviews before people check their code in? How about checking the spelling and grammar then?
For the already existing classes - if you really need a better grammar check, you would either have to use a commercial tool or write a tool yourself (e.g. a python script that parses all javadocs and runs a spell and grammar checker on it)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm looking for a good libraries to edit .mp3 tags ID3v(22,23,24) (like author, title, track and this kind of stuff), write in java or clojure, any ideas ?
There is some standard "de facto" in this field...
I have just look at this question:
https://stackoverflow.com/questions/73147/i-need-an-id3-tag-reader-library-for-java-preferably-a-fast-one
But if there is something more would be great...
Perfect would be if the libraries supported not only .mp3 but also .ogg and .wma...
Thanks everybody, and sorry for my English...
You can use JAudiotagger library JAudiotagger
I built a Swing project last year that used JAudioTagger, and it worked great.
I only added support for mp3 to my app, but I believe it support more than that.
I know this is a bit late, but maybe it will help someone. I also wanted a library for this, so I wrote a library supporting all of the commonly used tag fields in mp3, ogg, flac, and mp4/m4a files. Source and documentation can be found here: https://github.com/DanPallas/green-tags and it is up on clojars.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I've been handed the task (not sure if i like it or not) of generating a PDF export in an eclipse RCP app. I'm looking for a framework with as little effort as possible I can pass in a pojo model and some kind of template and presto.. get a PDF report back. I've taken a look at BIRT and I'm sure it offers that functionality just was hard to read through all the stuff does anyone have a tool they use to do this that is really easy or any ideas of how to move forward? Thanks - Duncan krebs
iText is great for generating all kinds of PDFs, but If you're going to do reports, then I have to recommend JasperReports.
Also, you can use iReport to simplify the design of your jasper reports.
I think the most widely used framework for this purpose is iText. Be sure to check out the terms of use.
I use iText with Spring. A good example can be found in Springs tutorial at Spring pdf
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I recently found this which is great as its the API but it doesn't seem to allow me to search
http://docs.oracle.com/javase/7/docs/api/
I am coming from a .NET background so need to be able to search the API.
I guess you are looking for something like this:KiwiDoc - A fresh way to browse and search javadoc
Auto-completion rocks!
For searching in the class/package names and within classes I can highly recommend the javadoc-search-frame. It's available for Google Chrome as an Extension and for all browsers that can run userscripts.
It provides a pretty useful quick-search functionality.
For a full-text search, I'd use Google as well.
Just use google
http://www.google.ee/search?q=RuntimeException+site%3Ahttp%3A%2F%2Fdownload.oracle.com%2Fjavase%2F6%2Fdocs%2Fapi
Use DMelt search
http://jwork.org/dmelt/search/
It searches words in the complete Java JDK 9, plus in 40,000 classes of external community Java packages
Just use CTRL+F in your browser.