[Japi-cvs] SF.net SVN: japi:[1178] progs/jhexview/trunk/src/prj/net/sf/japi/progs/ jhexview/HexView
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-02-24 02:28:47
|
Revision: 1178 http://japi.svn.sourceforge.net/japi/?rev=1178&view=rev Author: christianhujer Date: 2009-02-24 02:26:35 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/HexViewPane.java Modified: progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/HexViewPane.java =================================================================== --- progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/HexViewPane.java 2009-02-24 02:26:08 UTC (rev 1177) +++ progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/HexViewPane.java 2009-02-24 02:26:35 UTC (rev 1178) @@ -29,16 +29,24 @@ public class HexViewPane 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 HexViewPane. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |