[Japi-cvs] SF.net SVN: japi:[1159] tools/string2bytes/trunk/src/prj/net/sf/japi/ string2bytes
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-02-23 20:56:26
|
Revision: 1159 http://japi.svn.sourceforge.net/japi/?rev=1159&view=rev Author: christianhujer Date: 2009-02-23 20:56:22 +0000 (Mon, 23 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecSelectionPanel.java tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/DoubleListController.java tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/ListOrderController.java Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecSelectionPanel.java =================================================================== --- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecSelectionPanel.java 2009-02-23 19:21:09 UTC (rev 1158) +++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/CodecSelectionPanel.java 2009-02-23 20:56:22 UTC (rev 1159) @@ -40,10 +40,14 @@ /** Action Builder. */ @NotNull private static final ActionBuilder ACTION_BUILDER = ActionBuilderFactory.getInstance().getActionBuilder("net.sf.japi.string2bytes"); - /** The list with the available codecs. */ + /** The list with the available codecs. + * @serial include + */ @NotNull private final JList availableCodecsList = new JList(new CodecListModel()); - /** The list with the configured codec steps. */ + /** The list with the configured codec steps. + * @serial include + */ @NotNull private final JList configuredCodecSteps = new JList(new CodecStepsListModel()); /** Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/DoubleListController.java =================================================================== --- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/DoubleListController.java 2009-02-23 19:21:09 UTC (rev 1158) +++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/DoubleListController.java 2009-02-23 20:56:22 UTC (rev 1159) @@ -49,21 +49,25 @@ /** * The first list (source list) to operate on. + * @serial include */ @NotNull private final JList sourceList; /** * The second list (target list) to operate on. + * @serial include */ @NotNull private final JList targetList; /** * The Action for adding elements to the second (target) list based on the selection from the first list. + * @serial include */ @NotNull private final Action add = ACTION_BUILDER.createAction(false, "add", this); /** * The Action for removing elements from the second (target) list. + * @serial include */ @NotNull private final Action remove = ACTION_BUILDER.createAction(false, "remove", this); Modified: tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/ListOrderController.java =================================================================== --- tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/ListOrderController.java 2009-02-23 19:21:09 UTC (rev 1158) +++ tools/string2bytes/trunk/src/prj/net/sf/japi/string2bytes/ListOrderController.java 2009-02-23 20:56:22 UTC (rev 1159) @@ -47,32 +47,38 @@ /** * The JList to operate on. * If <code>null</code>, this ListOrderController is currently disconnected. + * @serial include */ @Nullable private DefaultListModel listModel; /** * The list selection model to operate on. * If <code>null</code>, this ListOrderController is currently disconnected. + * @serial include */ @Nullable private ListSelectionModel selectionModel; /** * Action for top. + * @serial include */ @NotNull private final Action top = ACTION_BUILDER.createAction(false, "top", this); /** * Action for up. + * @serial include */ @NotNull private final Action up = ACTION_BUILDER.createAction(false, "up", this); /** * Action for down. + * @serial include */ @NotNull private final Action down = ACTION_BUILDER.createAction(false, "down", this); /** * Action for bottom. + * @serial include */ @NotNull private final Action bottom = ACTION_BUILDER.createAction(false, "bottom", this); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |