ChartVersion.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.ObjectVersion;
import java.util.ArrayList;
import java.util.Collection;
public class ChartVersion extends ObjectVersion {
// --------------------------------------------------------- Instance Variables
private Collection graphs = new ArrayList();
// --------------------------------------------------------- Properties
public Collection getGraphs() {
return this.graphs;
}
public void setGraphs(Collection graphs) {
this.graphs = graphs;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/