In This Topic
package DerivedByExtensionLib;
public interface IAddress extends com.liquid_technologies.ltxmllib20.XmlObjectInterface
{
// Member variables
// Attribute - Name
// <summary>
// Represents a mandatory Element in the XML document
// </summary>
java.lang.String getName() throws com.liquid_technologies.ltxmllib20.exceptions.LtException;
void setName(java.lang.String value) throws com.liquid_technologies.ltxmllib20.exceptions.LtException;
// Attribute - Street
// <summary>
// Represents a mandatory Element in the XML document
// </summary>
java.lang.String getStreet() throws com.liquid_technologies.ltxmllib20.exceptions.LtException;
void setStreet(java.lang.String value) throws com.liquid_technologies.ltxmllib20.exceptions.LtException;
// Attribute - City
// <summary>
// Represents a mandatory Element in the XML document
// </summary>
java.lang.String getCity() throws com.liquid_technologies.ltxmllib20.exceptions.LtException;
void setCity(java.lang.String value) throws com.liquid_technologies.ltxmllib20.exceptions.LtException;
}