[Htmlparser-cvs] htmlparser/src/org/htmlparser/beans StringBean.java,1.38,1.39 LinkBean.java,1.28,1.
Brought to you by:
derrickoswald
From: Derrick O. <der...@us...> - 2004-05-16 18:00:05
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/beans In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20559/beans Modified Files: StringBean.java LinkBean.java Log Message: Alter bound property name constants to agree with section 8.8 Capitalization of inferred names. in the JavaBeans API specification. Index: LinkBean.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/beans/LinkBean.java,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** LinkBean.java 14 Mar 2004 15:53:06 -0000 1.28 --- LinkBean.java 16 May 2004 17:59:57 -0000 1.29 *************** *** 50,54 **** * Property name in event where the URL contents changes. */ ! public static final String PROP_LINKS_PROPERTY = "Links"; /** --- 50,54 ---- * Property name in event where the URL contents changes. */ ! public static final String PROP_LINKS_PROPERTY = "links"; /** Index: StringBean.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/beans/StringBean.java,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** StringBean.java 28 Feb 2004 15:52:42 -0000 1.38 --- StringBean.java 16 May 2004 17:59:57 -0000 1.39 *************** *** 77,86 **** * Property name in event where the URL contents changes. */ ! public static final String PROP_STRINGS_PROPERTY = "Strings"; /** * Property name in event where the 'embed links' state changes. */ ! public static final String PROP_LINKS_PROPERTY = "Links"; /** --- 77,86 ---- * Property name in event where the URL contents changes. */ ! public static final String PROP_STRINGS_PROPERTY = "strings"; /** * Property name in event where the 'embed links' state changes. */ ! public static final String PROP_LINKS_PROPERTY = "links"; /** *************** *** 92,106 **** * Property name in event where the 'replace non-breaking spaces' state changes. */ ! public static final String PROP_REPLACE_SPACE_PROPERTY = "ReplaceSpace"; /** * Property name in event where the 'collapse whitespace' state changes. */ ! public static final String PROP_COLLAPSE_PROPERTY = "Collapse"; /** * Property name in event where the connection changes. */ ! public static final String PROP_CONNECTION_PROPERTY = "Connection"; /** --- 92,106 ---- * Property name in event where the 'replace non-breaking spaces' state changes. */ ! public static final String PROP_REPLACE_SPACE_PROPERTY = "replaceNonBreakingSpaces"; /** * Property name in event where the 'collapse whitespace' state changes. */ ! public static final String PROP_COLLAPSE_PROPERTY = "collapse"; /** * Property name in event where the connection changes. */ ! public static final String PROP_CONNECTION_PROPERTY = "connection"; /** |