20 lines
323 B
Java
20 lines
323 B
Java
package com.tridium.eas.xml;
|
|
|
|
public interface XmlSupport {
|
|
void addChildObject(XmlSupport xmlSupport);
|
|
|
|
void decodeFromString(String str);
|
|
|
|
String encodeToString();
|
|
|
|
XmlSupport[] getChildObjects();
|
|
|
|
String getName();
|
|
|
|
String getType();
|
|
|
|
void setName(String str);
|
|
|
|
String toDebugString();
|
|
}
|