EquipmentConstant.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 EquipmentConstant extends NamedObject {

    // --------------------------------------------------------- Instance Variables
    private Integer sequenceNumber;

    private String vid;

    private String ecValue;

    private Collection constants = new ArrayList();

    // --------------------------------------------------------- Properties
    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;
    }

    public String getEcValue() {
        return this.ecValue;
    }

    public void setEcValue(String ecValue) {
        this.ecValue = ecValue;
    }

    // private Collection Constants=new ArrayList();
    public Collection getConstants() {
        return this.constants;
    }

    public void setConstants(Collection constants) {
        this.constants = constants;
    }

}

/*
 * Modification Log Log No : Name : Modified Date: Description :
 */