PromptsForPSRelation.java
/*
* @ Copyright 2003 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.Relation;
/**
* @author FA-Software
* @version 1.0 Created On 2003/05/22
*/
public class PromptsForPSRelation extends Relation {
// --------------------------------------------------------- Instance Variables
private Long toParameterSetRrn;
private Long toParameterSetVersion;
// --------------------------------------------------------- Constructor
// default constructor
public PromptsForPSRelation() {
super();
this.toParameterSetRrn = new Long("0");
this.toParameterSetVersion = new Long("0");
}
// most used constructor
public PromptsForPSRelation(Long fromRrn, Long toParameterSetRrn, Long toParameterSetVersion, Long toParameterRrn,
String linkType) {
super(fromRrn, toParameterRrn, linkType);
this.toParameterSetRrn = toParameterSetRrn;
this.toParameterSetVersion = toParameterSetVersion;
}
public static void main(String[] args) {
}
// --------------------------------------------------------- Properties
public Long getToParameterSetRrn() {
return this.toParameterSetRrn;
}
public void setToParameterSetRrn(Long toParameterSetRrn) {
this.toParameterSetRrn = toParameterSetRrn;
}
public Long getToParameterSetVersion() {
return this.toParameterSetVersion;
}
public void setToParameterSetVersion(Long toParameterSetVersion) {
this.toParameterSetVersion = toParameterSetVersion;
}
}
/*
* Modification Log `* Log No : Name : Modified Date: Description :
*/