Package org.openpnp.model.eagle.xml
Class Pass
- java.lang.Object
-
- org.openpnp.model.eagle.xml.Pass
-
public class Pass extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Pass()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getActive()
Gets the value of the active property.java.lang.String
getName()
Gets the value of the name property.java.util.List<Param>
getParam()
Gets the value of the param property.java.lang.String
getRefer()
Gets the value of the refer property.void
setActive(java.lang.String value)
Sets the value of the active property.void
setName(java.lang.String value)
Sets the value of the name property.void
setRefer(java.lang.String value)
Sets the value of the refer property.
-
-
-
Field Detail
-
name
protected java.lang.String name
-
refer
protected java.lang.String refer
-
active
protected java.lang.String active
-
param
protected java.util.List<Param> param
-
-
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
-
getRefer
public java.lang.String getRefer()
Gets the value of the refer property.- Returns:
- possible object is
String
-
setRefer
public void setRefer(java.lang.String value)
Sets the value of the refer property.- Parameters:
value
- allowed object isString
-
getActive
public java.lang.String getActive()
Gets the value of the active property.- Returns:
- possible object is
String
-
setActive
public void setActive(java.lang.String value)
Sets the value of the active property.- Parameters:
value
- allowed object isString
-
getParam
public java.util.List<Param> getParam()
Gets the value of the param 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 param property.For example, to add a new item, do as follows:
getParam().add(newItem);
Objects of the following type(s) are allowed in the list
Param
-
-