EquipmentVariable.java
/*
* @ Copyright 2001 FA Software;
* All right reserved. No part of this program may be reproduced or
* transmitted in any form or by any means, electronic or
* mechanical, including photocopying, recording, or by any
* information storage or retrieval system without written
* permission from FA Software, except for inclusion of brief
* quotations in a review.
*/
package com.mycim.valueobject.ems;
import com.mycim.valueobject.bas.NamedObject;
import java.util.ArrayList;
import java.util.Collection;
public class EquipmentVariable extends NamedObject {
// --------------------------------------------------------- Instance Variables
private String variableType;
private Integer sequenceNumber;
private String vid;
private String vidValue;
private String variableDesc;
private String format;
private Collection variable = new ArrayList();
// --------------------------------------------------------- Properties
public String getVariableType() {
return this.variableType;
}
public void setVariableType(String variableType) {
this.variableType = variableType;
}
public Integer getSequenceNumber() {
return this.sequenceNumber;
}
public void setSequenceNumber(Integer sequenceNumber) {
this.sequenceNumber = sequenceNumber;
}
public String getVid() {
return this.vid;
}
public void setVid(String vid) {
this.vid = vid;
}
// vidValue
public String getVidValue() {
return this.vidValue;
}
public void setVidValue(String vidValue) {
this.vidValue = vidValue;
}
public String getVariableDesc() {
return this.variableDesc;
}
public void setVariableDesc(String variableDesc) {
this.variableDesc = variableDesc;
}
public String getFormat() {
return this.format;
}
public void setFormat(String format) {
this.format = format;
}
// private Collection Constants=new ArrayList();
public Collection getVariable() {
return this.variable;
}
public void setVariable(Collection variable) {
this.variable = variable;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/