/** * 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); }
/** * 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); }
/** * 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); }
/** * 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); }