- java.lang.Object
-
- org.plutext.jaxb.svg11.SVGAltGlyphDefContent
-
- Direct Known Subclasses:
AltGlyphDef
public class SVGAltGlyphDefContent extends java.lang.ObjectJava class for SVG.altGlyphDef.content complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SVG.altGlyphDef.content"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element ref="{http://www.w3.org/2000/svg}glyphRef" maxOccurs="unbounded"/> <element ref="{http://www.w3.org/2000/svg}altGlyphItem" maxOccurs="unbounded"/> </choice> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<AltGlyphItem>altGlyphItemprotected java.util.List<GlyphRef>glyphRef
-
Constructor Summary
Constructors Constructor Description SVGAltGlyphDefContent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<AltGlyphItem>getAltGlyphItem()Gets the value of the altGlyphItem property.java.util.List<GlyphRef>getGlyphRef()Gets the value of the glyphRef property.
-
-
-
Field Detail
-
glyphRef
protected java.util.List<GlyphRef> glyphRef
-
altGlyphItem
protected java.util.List<AltGlyphItem> altGlyphItem
-
-
Method Detail
-
getGlyphRef
public java.util.List<GlyphRef> getGlyphRef()
Gets the value of the glyphRef property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the glyphRef property.For example, to add a new item, do as follows:
getGlyphRef().add(newItem);Objects of the following type(s) are allowed in the list
GlyphRef
-
getAltGlyphItem
public java.util.List<AltGlyphItem> getAltGlyphItem()
Gets the value of the altGlyphItem property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the altGlyphItem property.For example, to add a new item, do as follows:
getAltGlyphItem().add(newItem);Objects of the following type(s) are allowed in the list
AltGlyphItem
-
-