[Japi-cvs] SF.net SVN: japi:[1180] progs/jtype/trunk/src/prj/net/sf/japi/jtype
Status: Beta
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2009-02-24 02:28:40
|
Revision: 1180
http://japi.svn.sourceforge.net/japi/?rev=1180&view=rev
Author: christianhujer
Date: 2009-02-24 02:27:52 +0000 (Tue, 24 Feb 2009)
Log Message:
-----------
Fixed javadoc issues.
Modified Paths:
--------------
progs/jtype/trunk/src/prj/net/sf/japi/jtype/JType.java
progs/jtype/trunk/src/prj/net/sf/japi/jtype/PerformancePane.java
progs/jtype/trunk/src/prj/net/sf/japi/jtype/ReflectionField.java
Modified: progs/jtype/trunk/src/prj/net/sf/japi/jtype/JType.java
===================================================================
--- progs/jtype/trunk/src/prj/net/sf/japi/jtype/JType.java 2009-02-24 02:27:09 UTC (rev 1179)
+++ progs/jtype/trunk/src/prj/net/sf/japi/jtype/JType.java 2009-02-24 02:27:52 UTC (rev 1180)
@@ -53,9 +53,10 @@
/** The about dialog.
* This field is lazy initialized in {@link #about()}.
+ * @serial exclude
*/
@SuppressWarnings({"InstanceVariableMayNotBeInitialized"})
- private AboutDialog aboutDialog;
+ private transient AboutDialog aboutDialog;
/** Main program.
* @param args Commandline arguments (currently ignered).
Modified: progs/jtype/trunk/src/prj/net/sf/japi/jtype/PerformancePane.java
===================================================================
--- progs/jtype/trunk/src/prj/net/sf/japi/jtype/PerformancePane.java 2009-02-24 02:27:09 UTC (rev 1179)
+++ progs/jtype/trunk/src/prj/net/sf/japi/jtype/PerformancePane.java 2009-02-24 02:27:52 UTC (rev 1180)
@@ -42,22 +42,33 @@
/** Delay after which a keystroke will be treated as new key after a pause.
* This allows users to pause their excercises without having to explicitely stop the program.
+ * @serial include
*/
private final int pauseDetectionDelay = DEFAULT_PAUSE_DETECTION_DELAY;
- /** The number of keys typed correctly. */
+ /** The number of keys typed correctly.
+ * @serial include
+ */
private int keyTypes;
- /** The number of keys typed wrongly. */
+ /** The number of keys typed wrongly.
+ * @serial include
+ */
private int correctionTypes;
- /** The timestamp of the previous keystroke. */
+ /** The timestamp of the previous keystroke.
+ * @serial include
+ */
private long lastTime;
- /** The sum of time all keystrokes took alltogether so far. */
+ /** The sum of time all keystrokes took alltogether so far.
+ * @serial include
+ */
private long timeSums;
- /** Reflection fields. */
+ /** Reflection fields.
+ * @serial include
+ */
private final Collection<ReflectionField> reflectionFields = new ArrayList<ReflectionField>();
/** Creates a PerformancePane. */
Modified: progs/jtype/trunk/src/prj/net/sf/japi/jtype/ReflectionField.java
===================================================================
--- progs/jtype/trunk/src/prj/net/sf/japi/jtype/ReflectionField.java 2009-02-24 02:27:09 UTC (rev 1179)
+++ progs/jtype/trunk/src/prj/net/sf/japi/jtype/ReflectionField.java 2009-02-24 02:27:52 UTC (rev 1180)
@@ -32,16 +32,24 @@
*/
public class ReflectionField extends JComponent {
- /** The label to update. */
+ /** The label to update.
+ * @serial include
+ */
private final JLabel label;
- /** The format to create the label text. */
+ /** The format to create the label text.
+ * @serial include
+ */
private final String format;
- /** The target object from which the field value will be read. */
+ /** The target object from which the field value will be read.
+ * @serial include
+ */
private final Object target;
- /** The method used to retrieve the value of the property. */
+ /** The method used to retrieve the value of the property.
+ * @serial include
+ */
private final Method getter;
/** Creates a ReflactionField.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|