Example #1
0
 /**
  * Encode the attribute name again into the name of the target format. Internally used.
  *
  * @param name the original name
  * @return the name in the target format
  * @since 1.4
  */
 protected String encodeAttribute(String name) {
   return nameCoder.encodeAttribute(name);
 }
Example #2
0
 /**
  * Decode an attribute name from the target format.
  *
  * @param name the name in the target format
  * @return the original name
  * @since 1.4
  */
 public String decodeAttribute(String name) {
   return nameCoder.decodeAttribute(name);
 }
Example #3
0
 /**
  * Encode the node name again into the name of the target format. Internally used.
  *
  * @param name the original name
  * @return the name in the target format
  * @since 1.4
  */
 protected String encodeNode(String name) {
   return nameCoder.encodeNode(name);
 }
Example #4
0
 /**
  * Decode a node name from the target format.
  *
  * @param name the name in the target format
  * @return the original name
  * @since 1.4
  */
 public String decodeNode(String name) {
   return nameCoder.decodeNode(name);
 }