//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
// Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.10.23 at 08:50:01 AM PDT
//
package org.openpnp.model.eagle.xml;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "layer")
public class Layer {
@XmlAttribute(name = "number", required = true)
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String number;
@XmlAttribute(name = "name", required = true)
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String name;
@XmlAttribute(name = "color", required = true)
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String color;
@XmlAttribute(name = "fill", required = true)
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String fill;
@XmlAttribute(name = "visible")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String visible;
@XmlAttribute(name = "active")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String active;
/**
* Gets the value of the number property.
*
* @return possible object is {@link String }
*
*/
public String getNumber() {
return number;
}
/**
* Sets the value of the number property.
*
* @param value allowed object is {@link String }
*
*/
public void setNumber(String value) {
this.number = value;
}
/**
* Gets the value of the name property.
*
* @return possible object is {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value allowed object is {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the color property.
*
* @return possible object is {@link String }
*
*/
public String getColor() {
return color;
}
/**
* Sets the value of the color property.
*
* @param value allowed object is {@link String }
*
*/
public void setColor(String value) {
this.color = value;
}
/**
* Gets the value of the fill property.
*
* @return possible object is {@link String }
*
*/
public String getFill() {
return fill;
}
/**
* Sets the value of the fill property.
*
* @param value allowed object is {@link String }
*
*/
public void setFill(String value) {
this.fill = value;
}
/**
* Gets the value of the visible property.
*
* @return possible object is {@link String }
*
*/
public String getVisible() {
if (visible == null) {
return "yes";
}
else {
return visible;
}
}
/**
* Sets the value of the visible property.
*
* @param value allowed object is {@link String }
*
*/
public void setVisible(String value) {
this.visible = value;
}
/**
* Gets the value of the active property.
*
* @return possible object is {@link String }
*
*/
public String getActive() {
if (active == null) {
return "yes";
}
else {
return active;
}
}
/**
* Sets the value of the active property.
*
* @param value allowed object is {@link String }
*
*/
public void setActive(String value) {
this.active = value;
}
}