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

public class Channel extends NamedObject {

    // --------------------------------------------------------- Instance Variables
    // private Long channelRrn;
    private String channelTitle;

    private String showTitleFlag;

    private String pointColor;

    private String pointShape;

    private String oocColor;

    private String oocShape;

    private String lineVisiableFlag;

    private String lineStyle;

    private String lineColor;

    private String setSlFlag;

    private Long upperSpecificationLimit;

    private Long lowerSpecificationLimit;

    private String slStyle;

    private String slColor;

    private String setClFlag;

    private Long upperControlLimit;

    private Long lowerControlLimit;

    private Long calculateCount;

    private Long calculateFrequency;

    private Long calculateFrom;

    private Long calculateTo;

    private String showClFlag;

    private String showSlFlag;

    private String clColor;

    private String clStyle;

    private String showCenterlineFlag;

    private String centerlineStyle;

    private String centerlineColor;

    private String showTargetFlag;

    private String targetStyle;

    private String targetColor;

    private String plotExcludePointFlag;

    private String excludePointColor;

    private String excludePointShape;

    private Long plotCount;

    private Long plotFrequency;

    private Long plotFrom;

    private Long plotTo;

    private Long subgroupSize;

    private String includeNoCalculationFlag;

    private int seq;

    private int channelSeq;

    public Channel() {
    }

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

    // --------------------------------------------------------- Properties
    public String getChannelTitle() {
        return this.channelTitle;
    }

    public void setChannelTitle(String channelTitle) {
        this.channelTitle = channelTitle;
    }

    public String getShowTitleFlag() {
        return this.showTitleFlag;
    }

    public void setShowTitleFlag(String showTitleFlag) {
        this.showTitleFlag = showTitleFlag;
    }

    public String getPointColor() {
        return this.pointColor;
    }

    public void setPointColor(String pointColor) {
        this.pointColor = pointColor;
    }

    public String getPointShape() {
        return this.pointShape;
    }

    public void setPointShape(String pointShape) {
        this.pointShape = pointShape;
    }

    public String getOocColor() {
        return this.oocColor;
    }

    public void setOocColor(String oocColor) {
        this.oocColor = oocColor;
    }

    public String getOocShape() {
        return this.oocShape;
    }

    public void setOocShape(String oocShape) {
        this.oocShape = oocShape;
    }

    public String getLineVisiableFlag() {
        return this.lineVisiableFlag;
    }

    public void setLineVisiableFlag(String lineVisiableFlag) {
        this.lineVisiableFlag = lineVisiableFlag;
    }

    public String getLineStyle() {
        return this.lineStyle;
    }

    public void setLineStyle(String lineStyle) {
        this.lineStyle = lineStyle;
    }

    public String getLineColor() {
        return this.lineColor;
    }

    public void setLineColor(String lineColor) {
        this.lineColor = lineColor;
    }

    public String getSetSlFlag() {
        return this.setSlFlag;
    }

    public void setSetSlFlag(String setSlFlag) {
        this.setSlFlag = setSlFlag;
    }

    public Long getUpperSpecificationLimit() {
        return this.upperSpecificationLimit;
    }

    public void setUpperSpecificationLimit(Long upperSpecificationLimit) {
        this.upperSpecificationLimit = upperSpecificationLimit;
    }

    public Long getLowerSpecificationLimit() {
        return this.lowerSpecificationLimit;
    }

    public void setLowerSpecificationLimit(Long lowerSpecificationLimit) {
        this.lowerSpecificationLimit = lowerSpecificationLimit;
    }

    public String getSlStyle() {
        return this.slStyle;
    }

    public void setSlStyle(String slStyle) {
        this.slStyle = slStyle;
    }

    public String getSlColor() {
        return this.slColor;
    }

    public void setSlColor(String slColor) {
        this.slColor = slColor;
    }

    public String getSetClFlag() {
        return this.setClFlag;
    }

    public void setSetClFlag(String setClFlag) {
        this.setClFlag = setClFlag;
    }

    public Long getUpperControlLimit() {
        return this.upperControlLimit;
    }

    public void setUpperControlLimit(Long upperControlLimit) {
        this.upperControlLimit = upperControlLimit;
    }

    public Long getLowerControlLimit() {
        return this.lowerControlLimit;
    }

    public void setLowerControlLimit(Long lowerControlLimit) {
        this.lowerControlLimit = lowerControlLimit;
    }

    public Long getCalculateCount() {
        return this.calculateCount;
    }

    public void setCalculateCount(Long calculateCount) {
        this.calculateCount = calculateCount;
    }

    public Long getCalculateFrequency() {
        return this.calculateFrequency;
    }

    public void setCalculateFrequency(Long calculateFrequency) {
        this.calculateFrequency = calculateFrequency;
    }

    public Long getCalculateFrom() {
        return this.calculateFrom;
    }

    public void setCalculateFrom(Long calculateFrom) {
        this.calculateFrom = calculateFrom;
    }

    public Long getCalculateTo() {
        return this.calculateTo;
    }

    public void setCalculateTo(Long calculateTo) {
        this.calculateTo = calculateTo;
    }

    public String getShowClFlag() {
        return this.showClFlag;
    }

    public void setShowClFlag(String showClFlag) {
        this.showClFlag = showClFlag;
    }

    public String getShowSlFlag() {
        return this.showSlFlag;
    }

    public void setShowSlFlag(String showSlFlag) {
        this.showSlFlag = showSlFlag;
    }

    public String getClColor() {
        return this.clColor;
    }

    public void setClColor(String clColor) {
        this.clColor = clColor;
    }

    public String getClStyle() {
        return this.clStyle;
    }

    public void setClStyle(String clStyle) {
        this.clStyle = clStyle;
    }

    public String getShowCenterlineFlag() {
        return this.showCenterlineFlag;
    }

    public void setShowCenterlineFlag(String showCenterlineFlag) {
        this.showCenterlineFlag = showCenterlineFlag;
    }

    public String getCenterlineStyle() {
        return this.centerlineStyle;
    }

    public void setCenterlineStyle(String centerlineStyle) {
        this.centerlineStyle = centerlineStyle;
    }

    public String getCenterlineColor() {
        return this.centerlineColor;
    }

    public void setCenterlineColor(String centerlineColor) {
        this.centerlineColor = centerlineColor;
    }

    public String getShowTargetFlag() {
        return this.showTargetFlag;
    }

    public void setShowTargetFlag(String showTargetFlag) {
        this.showTargetFlag = showTargetFlag;
    }

    public String getTargetStyle() {
        return this.targetStyle;
    }

    public void setTargetStyle(String targetStyle) {
        this.targetStyle = targetStyle;
    }

    public String getTargetColor() {
        return this.targetColor;
    }

    public void setTargetColor(String targetColor) {
        this.targetColor = targetColor;
    }

    public String getPlotExcludePointFlag() {
        return this.plotExcludePointFlag;
    }

    public void setPlotExcludePointFlag(String plotExcludePointFlag) {
        this.plotExcludePointFlag = plotExcludePointFlag;
    }

    public String getExcludePointColor() {
        return this.excludePointColor;
    }

    public void setExcludePointColor(String excludePointColor) {
        this.excludePointColor = excludePointColor;
    }

    public String getExcludePointShape() {
        return this.excludePointShape;
    }

    public void setExcludePointShape(String excludePointShape) {
        this.excludePointShape = excludePointShape;
    }

    public Long getPlotCount() {
        return this.plotCount;
    }

    public void setPlotCount(Long plotCount) {
        this.plotCount = plotCount;
    }

    public Long getPlotFrequency() {
        return this.plotFrequency;
    }

    public void setPlotFrequency(Long plotFrequency) {
        this.plotFrequency = plotFrequency;
    }

    public Long getPlotFrom() {
        return this.plotFrom;
    }

    public void setPlotFrom(Long plotFrom) {
        this.plotFrom = plotFrom;
    }

    public Long getPlotTo() {
        return this.plotTo;
    }

    public void setPlotTo(Long plotTo) {
        this.plotTo = plotTo;
    }

    public Long getSubgroupSize() {
        return this.subgroupSize;
    }

    public void setSubgroupSize(Long subgroupSize) {
        this.subgroupSize = subgroupSize;
    }

    public String getIncludeNoCalculationFlag() {
        return this.includeNoCalculationFlag;
    }

    public void setIncludeNoCalculationFlag(String includeNoCalculationFlag) {
        this.includeNoCalculationFlag = includeNoCalculationFlag;
    }

    public int getSeq() {
        return this.seq;
    }

    public void setSeq(int seq) {
        this.seq = seq;
    }

    public int getChannelSeq() {
        return this.channelSeq;
    }

    public void setChannelSeq(int channelSeq) {
        this.channelSeq = channelSeq;
    }

}

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