[Japi-cvs] SF.net SVN: japi:[893] libs/swing-app/trunk/src/prj/net/sf/japi/swing/app
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-02-15 13:29:02
|
Revision: 893 http://japi.svn.sourceforge.net/japi/?rev=893&view=rev Author: christianhujer Date: 2009-02-15 13:28:59 +0000 (Sun, 15 Feb 2009) Log Message: ----------- Fixed several javadoc issues. Modified Paths: -------------- libs/swing-app/trunk/src/prj/net/sf/japi/swing/app/Document.java libs/swing-app/trunk/src/prj/net/sf/japi/swing/app/DocumentEvent.java libs/swing-app/trunk/src/prj/net/sf/japi/swing/app/script/TryApplication.java Modified: libs/swing-app/trunk/src/prj/net/sf/japi/swing/app/Document.java =================================================================== --- libs/swing-app/trunk/src/prj/net/sf/japi/swing/app/Document.java 2009-02-15 13:28:41 UTC (rev 892) +++ libs/swing-app/trunk/src/prj/net/sf/japi/swing/app/Document.java 2009-02-15 13:28:59 UTC (rev 893) @@ -38,23 +38,35 @@ /** Serial version. */ private static final long serialVersionUID = 1L; - /** The frames of this document. */ + /** The frames of this document. + * @serial include + */ private final List<DocumentFrame<D>> frames = new ArrayList<DocumentFrame<D>>(); - /** The Event Listeners. */ + /** The Event Listeners. + * @serial include + */ private final EventListenerList listenerList = new EventListenerList(); - /** The data of this Document. */ + /** The data of this Document. + * @serial include + */ @NotNull private final D data; - /** The URI of this document. */ + /** The URI of this document. + * @serial include + */ @Nullable private String uri; - /** The title of this document. */ + /** The title of this document. + * @serial include + */ // TODO:2009-02-15:christianhujer:@Nullable or @NotNull private String title; - /** The changed state of this document. */ + /** The changed state of this document. + * @serial include + */ private boolean changed = false; /** Creates a Document. Modified: libs/swing-app/trunk/src/prj/net/sf/japi/swing/app/DocumentEvent.java =================================================================== --- libs/swing-app/trunk/src/prj/net/sf/japi/swing/app/DocumentEvent.java 2009-02-15 13:28:41 UTC (rev 892) +++ libs/swing-app/trunk/src/prj/net/sf/japi/swing/app/DocumentEvent.java 2009-02-15 13:28:59 UTC (rev 893) @@ -30,10 +30,14 @@ /** Serial version. */ private static final long serialVersionUID = 1L; - /** The type of this event. */ + /** The type of this event. + * @serial include + */ @NotNull private final DocumentEventType type; - /** The source of this event. */ + /** The source of this event. + * @serial include + */ private final Document<D> source; /** Constructs a DocumentEvent. Modified: libs/swing-app/trunk/src/prj/net/sf/japi/swing/app/script/TryApplication.java =================================================================== --- libs/swing-app/trunk/src/prj/net/sf/japi/swing/app/script/TryApplication.java 2009-02-15 13:28:41 UTC (rev 892) +++ libs/swing-app/trunk/src/prj/net/sf/japi/swing/app/script/TryApplication.java 2009-02-15 13:28:59 UTC (rev 893) @@ -42,7 +42,7 @@ return null; //To change body of implemented methods use File | Settings | File Templates. } - /** {@inheritDoc} */ + /** Document of this TryApplication. */ public class Document extends Application.Document { /** {@inheritDoc} */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |