Graph.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.Collection;
public class Graph extends NamedObject {
// --------------------------------------------------------- Instance Variables
// private Long graphRrn;
private String graphTitle;
private String showTitleFlag;
private String graphType;
private int seq;
private Collection channels;
public Graph() {
}
public Graph(String instanceId, String namedSpace, String object) {
super(instanceId, namedSpace, object);
}
// --------------------------------------------------------- Properties
public String getGraphTitle() {
return this.graphTitle;
}
public void setGraphTitle(String graphTitle) {
this.graphTitle = graphTitle;
}
public String getShowTitleFlag() {
return this.showTitleFlag;
}
public void setShowTitleFlag(String showTitleFlag) {
this.showTitleFlag = showTitleFlag;
}
public String getGraphType() {
return this.graphType;
}
public void setGraphType(String graphType) {
this.graphType = graphType;
}
public int getSeq() {
return this.seq;
}
public void setSeq(int seq) {
this.seq = seq;
}
public Collection getChannels() {
return this.channels;
}
public void setChannels(Collection channels) {
this.channels = channels;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/