I use the javadoc @version tag in my classes, however I am not sure how to get the version in the class itself. Let's look at an example...
/**
* @version 1.0a
* @author Redandwhite
*/
public class JClass extends JFrame implements ActionListener, KeyListener {
String version = ...
}
Is there a method/class that can retrieve the version? Ideally, it's as simple as an API call which returns a simple String.