[Japi-cvs] SF.net SVN: japi: [542] libs/swing-list/trunk/src/net/sf/japi/swing/list
Status: Beta
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2007-07-14 15:54:01
|
Revision: 542
http://svn.sourceforge.net/japi/?rev=542&view=rev
Author: christianhujer
Date: 2007-07-14 08:54:00 -0700 (Sat, 14 Jul 2007)
Log Message:
-----------
Fixed javadoc issues.
Modified Paths:
--------------
libs/swing-list/trunk/src/net/sf/japi/swing/list/ArrayListModel.java
libs/swing-list/trunk/src/net/sf/japi/swing/list/ListControlPanel.java
Modified: libs/swing-list/trunk/src/net/sf/japi/swing/list/ArrayListModel.java
===================================================================
--- libs/swing-list/trunk/src/net/sf/japi/swing/list/ArrayListModel.java 2007-07-14 15:53:53 UTC (rev 541)
+++ libs/swing-list/trunk/src/net/sf/japi/swing/list/ArrayListModel.java 2007-07-14 15:54:00 UTC (rev 542)
@@ -29,7 +29,9 @@
*/
public class ArrayListModel<E> extends AbstractMutableListModel<E> {
- /** The ArrayList that backs this ArrayListModel. */
+ /** The ArrayList that backs this ArrayListModel.
+ * @serial include
+ */
private final List<E> list = new ArrayList<E>();
/** Creates a new ArrayListModel.
Modified: libs/swing-list/trunk/src/net/sf/japi/swing/list/ListControlPanel.java
===================================================================
--- libs/swing-list/trunk/src/net/sf/japi/swing/list/ListControlPanel.java 2007-07-14 15:53:53 UTC (rev 541)
+++ libs/swing-list/trunk/src/net/sf/japi/swing/list/ListControlPanel.java 2007-07-14 15:54:00 UTC (rev 542)
@@ -39,22 +39,34 @@
/** The ActionFactory for creating the actions. */
@NotNull private static final ActionFactory ACTION_FACTORY = ActionFactory.getFactory("net.sf.japi.swing.list");
- /** Action for moving to top. */
+ /** Action for moving to top.
+ * @serial include
+ */
@NotNull private final Action moveToTop = ACTION_FACTORY.createAction(false, "moveToTop", this);
- /** Action for moving up. */
+ /** Action for moving up.
+ * @serial include
+ */
@NotNull private final Action moveUp = ACTION_FACTORY.createAction(false, "moveUp", this);
- /** Action for moving down. */
+ /** Action for moving down.
+ * @serial include
+ */
@NotNull private final Action moveDown = ACTION_FACTORY.createAction(false, "moveDown", this);
- /** Action for moving to bottom. */
+ /** Action for moving to bottom.
+ * @serial include
+ */
@NotNull private final Action moveToBottom = ACTION_FACTORY.createAction(false, "moveToBottom", this);
- /** The list that provides the information about the current selection. */
+ /** The list that provides the information about the current selection.
+ * @serial include
+ */
@NotNull private JList list;
- /** The model to control. */
+ /** The model to control.
+ * @serial include
+ */
@NotNull private MutableListModel model;
/** Creates a ListControlPanel.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|