📄 tagfieldcommand.java
字号:
/*
* Copyright (C) 2007 ETH Zurich
*
* This file is part of Fosstrak (www.fosstrak.org).
*
* Fosstrak is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* Fosstrak is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Fosstrak; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3
// 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: 2006.07.05 at 05:03:34 PM CEST
//
package org.fosstrak.reader.rprm.core.msg.command;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.fosstrak.reader.rprm.core.msg.command.NoParamType;
import org.fosstrak.reader.rprm.core.msg.command.TagFieldCommand;
import org.fosstrak.reader.rprm.core.msg.command.TagFieldCommand.Create;
import org.fosstrak.reader.rprm.core.msg.command.TagFieldCommand.SetLength;
import org.fosstrak.reader.rprm.core.msg.command.TagFieldCommand.SetMemoryBank;
import org.fosstrak.reader.rprm.core.msg.command.TagFieldCommand.SetOffset;
import org.fosstrak.reader.rprm.core.msg.command.TagFieldCommand.SetTagFieldName;
/**
* <p>Java class for TagFieldCommand complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="TagFieldCommand">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="create">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="getName" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
* <element name="getTagFieldName" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
* <element name="setTagFieldName">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="tagFieldName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="getMemoryBank" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
* <element name="setMemoryBank">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="memoryBank" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="getOffset" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
* <element name="setOffset">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="offset" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="getLength" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
* <element name="setLength">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="length" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TagFieldCommand", propOrder = {
"create",
"getName",
"getTagFieldName",
"setTagFieldName",
"getMemoryBank",
"setMemoryBank",
"getOffset",
"setOffset",
"getLength",
"setLength"
})
public class TagFieldCommand {
protected Create create;
protected NoParamType getName;
protected NoParamType getTagFieldName;
protected SetTagFieldName setTagFieldName;
protected NoParamType getMemoryBank;
protected SetMemoryBank setMemoryBank;
protected NoParamType getOffset;
protected SetOffset setOffset;
protected NoParamType getLength;
protected SetLength setLength;
/**
* Gets the value of the create property.
*
* @return
* possible object is
* {@link Create }
*
*/
public Create getCreate() {
return create;
}
/**
* Sets the value of the create property.
*
* @param value
* allowed object is
* {@link Create }
*
*/
public void setCreate(Create value) {
this.create = value;
}
/**
* Gets the value of the getName property.
*
* @return
* possible object is
* {@link NoParamType }
*
*/
public NoParamType getGetName() {
return getName;
}
/**
* Sets the value of the getName property.
*
* @param value
* allowed object is
* {@link NoParamType }
*
*/
public void setGetName(NoParamType value) {
this.getName = value;
}
/**
* Gets the value of the getTagFieldName property.
*
* @return
* possible object is
* {@link NoParamType }
*
*/
public NoParamType getGetTagFieldName() {
return getTagFieldName;
}
/**
* Sets the value of the getTagFieldName property.
*
* @param value
* allowed object is
* {@link NoParamType }
*
*/
public void setGetTagFieldName(NoParamType value) {
this.getTagFieldName = value;
}
/**
* Gets the value of the setTagFieldName property.
*
* @return
* possible object is
* {@link SetTagFieldName }
*
*/
public SetTagFieldName getSetTagFieldName() {
return setTagFieldName;
}
/**
* Sets the value of the setTagFieldName property.
*
* @param value
* allowed object is
* {@link SetTagFieldName }
*
*/
public void setSetTagFieldName(SetTagFieldName value) {
this.setTagFieldName = value;
}
/**
* Gets the value of the getMemoryBank property.
*
* @return
* possible object is
* {@link NoParamType }
*
*/
public NoParamType getGetMemoryBank() {
return getMemoryBank;
}
/**
* Sets the value of the getMemoryBank property.
*
* @param value
* allowed object is
* {@link NoParamType }
*
*/
public void setGetMemoryBank(NoParamType value) {
this.getMemoryBank = value;
}
/**
* Gets the value of the setMemoryBank property.
*
* @return
* possible object is
* {@link SetMemoryBank }
*
*/
public SetMemoryBank getSetMemoryBank() {
return setMemoryBank;
}
/**
* Sets the value of the setMemoryBank property.
*
* @param value
* allowed object is
* {@link SetMemoryBank }
*
*/
public void setSetMemoryBank(SetMemoryBank value) {
this.setMemoryBank = value;
}
/**
* Gets the value of the getOffset property.
*
* @return
* possible object is
* {@link NoParamType }
*
*/
public NoParamType getGetOffset() {
return getOffset;
}
/**
* Sets the value of the getOffset property.
*
* @param value
* allowed object is
* {@link NoParamType }
*
*/
public void setGetOffset(NoParamType value) {
this.getOffset = value;
}
/**
* Gets the value of the setOffset property.
*
* @return
* possible object is
* {@link SetOffset }
*
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -