public class Path extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded" minOccurs="0"> <element name="move-to"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="x" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="y" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> </restriction> </complexContent> </complexType> </element> <element name="line-to"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="x" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="y" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> </restriction> </complexContent> </complexType> </element> <element name="quad-to"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="x" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="y" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="cx" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="cy" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> </restriction> </complexContent> </complexType> </element> <element name="curve-to"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="x" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="y" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="c1x" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="c1y" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="c2x" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="c2y" use="required" type="{http://www.w3.org/2001/XMLSchema}float" /> </restriction> </complexContent> </complexType> </element> <element name="close" type="{http://www.w3.org/2001/XMLSchema}anyType"/> </choice> </restriction> </complexContent> </complexType>
Modifier and Type | Class and Description |
---|---|
static class |
Path.CurveTo
Java class for anonymous complex type.
|
static class |
Path.LineTo
Java class for anonymous complex type.
|
static class |
Path.MoveTo
Java class for anonymous complex type.
|
static class |
Path.QuadTo
Java class for anonymous complex type.
|
Modifier and Type | Field and Description |
---|---|
protected List<Object> |
moveToOrLineToOrQuadTo |
Constructor and Description |
---|
Path() |
Modifier and Type | Method and Description |
---|---|
List<Object> |
getMoveToOrLineToOrQuadTo()
Gets the value of the moveToOrLineToOrQuadTo property.
|
public List<Object> getMoveToOrLineToOrQuadTo()
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 set
method for the moveToOrLineToOrQuadTo property.
For example, to add a new item, do as follows:
getMoveToOrLineToOrQuadTo().add(newItem);
Objects of the following type(s) are allowed in the list
Object
Path.QuadTo
Path.CurveTo
Path.MoveTo
Path.LineTo
Copyright © 2020 Hyland Software Germany GmbH. All rights reserved.