Interface XmlElement
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
XmlElementImpl
public interface XmlElement extends java.io.SerializableThe interface Xml element.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<XmlElementAttribute>getAttributes()Gets attributes.java.util.List<javax.xml.bind.annotation.XmlElement>getElements()Gets elements.intgetFrameuid()Gets frameuid.XmlElementGridgetGrid()Gets grid.java.lang.StringgetName()Gets name.java.util.List<XmlElementPosition>getPositions()Gets positions.java.lang.StringgetType()Gets type.intgetUid()Gets uid.voidsetAttributes(java.util.List<XmlElementAttribute> attributes)Sets attributes.voidsetElements(java.util.List<javax.xml.bind.annotation.XmlElement> elements)Sets elements.voidsetFrameuid(int frameuid)Sets frameuid.voidsetGrid(XmlElementGrid grid)Sets grid.voidsetName(java.lang.String name)Sets name.voidsetPositions(java.util.List<XmlElementPosition> positions)Sets positions.voidsetType(java.lang.String type)Sets type.voidsetUid(int uid)Sets uid.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Gets name.- Returns:
- the name
-
setName
void setName(java.lang.String name)
Sets name.- Parameters:
name- the name
-
getUid
int getUid()
Gets uid.- Returns:
- the uid
-
setUid
void setUid(int uid)
Sets uid.- Parameters:
uid- the uid
-
getType
java.lang.String getType()
Gets type.- Returns:
- the type
-
setType
void setType(java.lang.String type)
Sets type.- Parameters:
type- the type
-
getFrameuid
int getFrameuid()
Gets frameuid.- Returns:
- the frameuid
-
setFrameuid
void setFrameuid(int frameuid)
Sets frameuid.- Parameters:
frameuid- the frameuid
-
getPositions
java.util.List<XmlElementPosition> getPositions()
Gets positions.- Returns:
- the positions
-
setPositions
void setPositions(java.util.List<XmlElementPosition> positions)
Sets positions.- Parameters:
positions- the positions
-
getGrid
XmlElementGrid getGrid()
Gets grid.- Returns:
- the grid
-
setGrid
void setGrid(XmlElementGrid grid)
Sets grid.- Parameters:
grid- the grid
-
getAttributes
java.util.List<XmlElementAttribute> getAttributes()
Gets attributes.- Returns:
- the attributes
-
setAttributes
void setAttributes(java.util.List<XmlElementAttribute> attributes)
Sets attributes.- Parameters:
attributes- the attributes
-
getElements
java.util.List<javax.xml.bind.annotation.XmlElement> getElements()
Gets elements.- Returns:
- the elements
-
setElements
void setElements(java.util.List<javax.xml.bind.annotation.XmlElement> elements)
Sets elements.- Parameters:
elements- the elements
-
-