ProductLayerMask.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;

public class ProductLayerMask extends NamedObject {

    // --------------------------------------------------------- Instance Variables
    private Long productRrn;

    private String productId;

    private Long processRrn;

    private String processId;

    private Integer processVersion;

    private String layerId;

    private Long reticleFamilyRrn;

    private String reticleFamilyId;

    private Integer sequenceNumber;  // add by hebo

    // --------------------------------------------------------- Constructors
    public ProductLayerMask() {
    }

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

    // --------------------------------------------------------- Properties
    public Long getProductRrn() {
        return this.productRrn;
    }

    public void setProductRrn(Long productRrn) {
        this.productRrn = productRrn;
    }

    public String getProductId() {
        return this.productId;
    }

    public void setProductId(String productId) {
        this.productId = productId;
    }

    public Long getProcessRrn() {
        return this.processRrn;
    }

    public void setProcessRrn(Long processRrn) {
        this.processRrn = processRrn;
    }

    public String getProcessId() {
        return this.processId;
    }

    public void setProcessId(String processId) {
        this.processId = processId;
    }

    public Integer getProcessVersion() {
        return this.processVersion;
    }

    public void setProcessVersion(Integer processVersion) {
        this.processVersion = processVersion;
    }

    public String getLayerId() {
        return this.layerId;
    }

    public void setLayerId(String layerId) {
        this.layerId = layerId;
    }

    public Long getReticleFamilyRrn() {
        return this.reticleFamilyRrn;
    }

    public void setReticleFamilyRrn(Long reticleFamilyRrn) {
        this.reticleFamilyRrn = reticleFamilyRrn;
    }

    public String getReticleFamilyId() {
        return this.reticleFamilyId;
    }

    public void setReticleFamilyId(String reticleFamilyId) {
        this.reticleFamilyId = reticleFamilyId;
    }

    public Integer getSequenceNumber() {
        return this.sequenceNumber;
    }

    public void setSequenceNumber(Integer sequenceNumber) {
        this.sequenceNumber = sequenceNumber;
    } // add by hebo

}

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