[Htmlparser-cvs] htmlparser/src/org/htmlparser/lexerapplications/thumbelina Thumbelina.java,1.3,1.4
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2004-05-16 18:00:05
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/lexerapplications/thumbelina In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20559/lexerapplications/thumbelina Modified Files: Thumbelina.java Log Message: Alter bound property name constants to agree with section 8.8 Capitalization of inferred names. in the JavaBeans API specification. Index: Thumbelina.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/lexerapplications/thumbelina/Thumbelina.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Thumbelina.java 4 Nov 2003 01:25:02 -0000 1.3 --- Thumbelina.java 16 May 2004 17:59:56 -0000 1.4 *************** *** 83,95 **** * Property name for current URL binding. */ ! public static final String PROP_CURRENT_URL_PROPERTY = "CurrentURL"; /** * Property name for queue size binding. */ ! public static final String PROP_URL_QUEUE_PROPERTY = "URLQueue"; /** * Property name for visited URL size binding. */ ! public static final String PROP_URL_VISITED_PROPERTY = "URLVisited"; /** --- 83,95 ---- * Property name for current URL binding. */ ! public static final String PROP_CURRENT_URL_PROPERTY = "currentURL"; /** * Property name for queue size binding. */ ! public static final String PROP_URL_QUEUE_PROPERTY = "queueSize"; /** * Property name for visited URL size binding. */ ! public static final String PROP_URL_VISITED_PROPERTY = "visitedSize"; /** *************** *** 1454,1457 **** --- 1454,1462 ---- * * $Log$ + * Revision 1.4 2004/05/16 17:59:56 derrickoswald + * Alter bound property name constants to agree with section + * 8.8 Capitalization of inferred names. + * in the JavaBeans API specification. + * * Revision 1.3 2003/11/04 01:25:02 derrickoswald * Made visiting order the same order as on the page. |