[Japi-cvs] SF.net SVN: japi:[1177] progs/jhexedit/trunk/src/prj/net/sf/japi/progs/ jhexedit/HexEdit
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-02-24 02:28:45
|
Revision: 1177 http://japi.svn.sourceforge.net/japi/?rev=1177&view=rev Author: christianhujer Date: 2009-02-24 02:26:08 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/HexEditPane.java Modified: progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/HexEditPane.java =================================================================== --- progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/HexEditPane.java 2009-02-24 02:26:00 UTC (rev 1176) +++ progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/HexEditPane.java 2009-02-24 02:26:08 UTC (rev 1177) @@ -28,16 +28,24 @@ */ public class HexEditPane extends JPanel { - /** The data to show. */ + /** The data to show. + * @serial include + */ private final byte[] data; - /** The columns to show. */ + /** The columns to show. + * @serial include + */ private final int cols = 16; - /** The rows to show. */ + /** The rows to show. + * @serial include + */ private final int rows; - /** The TextArea that displays the hex info. */ + /** The TextArea that displays the hex info. + * @serial include + */ private final JTextArea textArea = new JTextArea(25, cols * 4 + 8); /** Creates a HexEditPane. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |