giacomo 2003/01/09 10:52:30
Modified: src/java/org/apache/cocoon/xml NamespacesTable.java
Log:
reverting recent changes
Revision Changes Path
1.6 +11 -11 xml-cocoon2/src/java/org/apache/cocoon/xml/NamespacesTable.java
Index: NamespacesTable.java
===================================================================
RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/xml/NamespacesTable.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -b -u -r1.5 -r1.6
--- NamespacesTable.java 9 Jan 2003 15:06:21 -0000 1.5
+++ NamespacesTable.java 9 Jan 2003 18:52:30 -0000 1.6
@@ -269,20 +269,20 @@
/** The internal entry structure for this table. */
private static class Entry implements Declaration {
/** The URI hashcode. */
- int uriHash=0;
+ private int uriHash=0;
/** The prefix hashcode. */
- int prefixHash=0;
+ private int prefixHash=0;
/** The URI string. */
- String uri="";
+ private String uri="";
/** The prefix string. */
- String prefix="";
+ private String prefix="";
/** The previous declaration for the same prefix. */
- Entry previousDeclaration=null;
+ private Entry previousDeclaration=null;
/** The declaration following this one in the table. */
- Entry nextEntry=null;
+ private Entry nextEntry=null;
/** Create a new namespace declaration. */
- static Entry create(String prefix, String uri) {
+ private static Entry create(String prefix, String uri) {
// Create a new entry
Entry e=new Entry();
// Set the prefix string and hash code.
@@ -304,13 +304,13 @@
/** The default namespace-aware name declaration implementation */
private static class NameImpl implements Name {
/** The namespace URI. */
- String uri=null;
+ private String uri=null;
/** The namespace prefix. */
- String prefix=null;
+ private String prefix=null;
/** The namespace local name. */
- String local=null;
+ private String local=null;
/** The namespace raw name. */
- String raw=null;
+ private String raw=null;
/** Return the namespace URI. */
public String getUri() { return(this.uri); }
----------------------------------------------------------------------
In case of troubles, e-mail: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]