Package org.openpnp.model.eagle.xml
Class Symbol
- java.lang.Object
-
- org.openpnp.model.eagle.xml.Symbol
-
public class Symbol extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected Description
description
protected java.lang.String
name
protected java.util.List<java.lang.Object>
polygonOrWireOrTextOrDimensionOrPinOrCircleOrRectangleOrFrame
-
Constructor Summary
Constructors Constructor Description Symbol()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Description
getDescription()
Gets the value of the description property.java.lang.String
getName()
Gets the value of the name property.java.util.List<java.lang.Object>
getPolygonOrWireOrTextOrDimensionOrPinOrCircleOrRectangleOrFrame()
Gets the value of the polygonOrWireOrTextOrDimensionOrPinOrCircleOrRectangleOrFrame property.void
setDescription(Description value)
Sets the value of the description property.void
setName(java.lang.String value)
Sets the value of the name property.
-
-
-
Field Detail
-
name
protected java.lang.String name
-
description
protected Description description
-
polygonOrWireOrTextOrDimensionOrPinOrCircleOrRectangleOrFrame
protected java.util.List<java.lang.Object> polygonOrWireOrTextOrDimensionOrPinOrCircleOrRectangleOrFrame
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Sets the value of the name property.- Parameters:
value
- allowed object isString
-
getDescription
public Description getDescription()
Gets the value of the description property.- Returns:
- possible object is
Description
-
setDescription
public void setDescription(Description value)
Sets the value of the description property.- Parameters:
value
- allowed object isDescription
-
getPolygonOrWireOrTextOrDimensionOrPinOrCircleOrRectangleOrFrame
public java.util.List<java.lang.Object> getPolygonOrWireOrTextOrDimensionOrPinOrCircleOrRectangleOrFrame()
Gets the value of the polygonOrWireOrTextOrDimensionOrPinOrCircleOrRectangleOrFrame 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
set
method for the polygonOrWireOrTextOrDimensionOrPinOrCircleOrRectangleOrFrame property.For example, to add a new item, do as follows:
getPolygonOrWireOrTextOrDimensionOrPinOrCircleOrRectangleOrFrame().add(newItem);
Objects of the following type(s) are allowed in the list
Polygon
Wire
Text
Dimension
Pin
Circle
Rectangle
Frame
-
-