Chart.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.edcspc;

import com.mycim.valueobject.bas.NamedObject;

import java.util.ArrayList;
import java.util.Collection;

public class Chart extends NamedObject {

    // --------------------------------------------------------- Instance Variables
    private String lotOrEquipment;

    private String realTimeFlag;

    private Long numberOfPoints;

    private Long numberOfDays;

    private String beginDate;

    private String endDate;

    private Collection versions = new ArrayList();

    // --------------------------------------------------------- Properties
    public Chart() {
    }

    public Chart(String instanceId, String namedSpace, String object) {
        super(instanceId, namedSpace, object);
    }

    public String getLotOrEquipment() {
        return this.lotOrEquipment;
    }

    public void setLotOrEquipment(String lotOrEquipment) {
        this.lotOrEquipment = lotOrEquipment;
    }

    public String getRealTimeFlag() {
        return this.realTimeFlag;
    }

    public void setRealTimeFlag(String realTimeFlag) {
        this.realTimeFlag = realTimeFlag;
    }

    public Long getNumberOfPoints() {
        return this.numberOfPoints;
    }

    public void setNumberOfPoints(Long numberOfPoints) {
        this.numberOfPoints = numberOfPoints;
    }

    public Long getNumberOfDays() {
        return this.numberOfDays;
    }

    public void setNumberOfDays(Long numberOfDays) {
        this.numberOfDays = numberOfDays;
    }

    public String getBeginDate() {
        return this.beginDate;
    }

    public void setBeginDate(String beginDate) {
        this.beginDate = beginDate;
    }

    public String getEndDate() {
        return this.endDate;
    }

    public void setEndDate(String endDate) {
        this.endDate = endDate;
    }

    public Collection getVersions() {
        return this.versions;
    }

    public void setVersions(Collection versions) {
        this.versions = versions;
    }

}

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