/** * Sets the XML Name for the described object. * * @param xmlName the XML name to use for the described object. */ public void setXMLName(final String xmlName) { if (xmlName != null && xmlName.length() > 0) { _xmlName = xmlName; _desc.setXMLName(xmlName); } } // -- setXMLName
/** * Sets the XML Name for the described object. * * @param xmlName the XML name to use for the described object. */ public void setXMLName(String xmlName) { if ((xmlName != null) && (xmlName.length() > 0)) { _xmlName = xmlName; _desc.setXMLName(xmlName); } } // -- setXMLName