Loki.yggdrasill.info


Own Javadoc Tags

Posted in development, java by Loki on the August 3rd, 2007

To apply your own javadoc tags, you need only a actual JDK and specially the interface com.sun.tools.doclets.Taglet. Implement this and add a method register like the following:

public static void register(Map tagletMap) {
CustomTag tag = new CustomTag();
Taglet t = (Taglet) tagletMap.get(tag.getName());
if (t != null) {
tagletMap.remove(tag.getName());
}
tagletMap.put(tag.getName(), tag);
}

then you can pack your new taglet class to an jar and try this parameters on javadoc execution -taglet CustomTag -tagletpath /path/to/tagletExt.jar in this example I use no package for the CustomTag class, so the taglet is CustomTag without package prefix

See also for more:

Eclipse 3.2 final

Posted in development, eclipse, java by Loki on the July 5th, 2006

No information on the Eclipse main page, but there is it … see ;-)

First public release: ExtendetYDatePicker/1006

Posted in development, eclipse, java by Loki on the July 1st, 2006

CalView First release of ExtendetYDatePicker is avalibal under yExSelection1006.jar, Documentation, Example. IE users must be careful with filenameextension jar vs. zip. ExtendetYDatePicker is a SWT widget to select and mark days in your own swt application.

Calendar Maping in SWT

Posted in development, eclipse, java by Loki on the May 19th, 2006

Selection ScreenshotThis is the first development release of the ExtendetYDatePicker. A SWT based Day selection Widget. Public release at least at first of July.