cb.petal.Operation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.crazybeans Show documentation
Show all versions of org.crazybeans Show documentation
Java library to read, modify or create Rational Rose petal files
The newest version!
/**
* Copyright (c) 2001 Markus Dahm
* Copyright (C) 2015-2018 BITPlan GmbH http://www.bitplan.com
*
* This source is part of
* https://github.com/BITPlan/CrazyBeans
* and the license as outlined there applies
*/
package cb.petal;
import java.util.StringTokenizer;
/**
* Represents operation object, i.e. method.
*
* @version $Id: Operation.java,v 1.17 2005/05/09 20:15:05 moroff Exp $
* @author M. Dahm
*/
public class Operation extends AccessObject {
static final long serialVersionUID=8462139492522368436L;
public Operation(PetalNode parent, java.util.Collection params) {
super(parent, "Operation", params);
}
public Operation() {
super("Operation");
}
public PetalNodeList getParameters() {
return (PetalNodeList)getProperty("parameters");
}
public void setParameters(PetalNodeList o) {
defineProperty("parameters", o);
}
public PetalNodeList getExceptions() {
PetalNode node = getProperty("exceptions");
if ( node instanceof PetalNodeList )
return (PetalNodeList)node;
else if ( node instanceof StringLiteral ){
PetalNodeList list = new PetalNodeList("exceptions");
StringTokenizer parse = new StringTokenizer(((StringLiteral)node).getValue(), ",");
while (parse.hasMoreTokens()) {
list.add(new StringLiteral(parse.nextToken()));
}
return list;
}
else
return null;
}
public void setExceptions(PetalNodeList o) {
defineProperty("exceptions", o);
}
public String getConcurrency() {
return getPropertyAsString("concurrency");
}
public void setConcurrency(String c) {
defineProperty("concurrency", c);
}
public String getResult() {
return getPropertyAsString("result");
}
public void setResult(String c) {
defineProperty("result", c);
}
public void setPostCondition(SemanticInfo c) {
defineProperty("post_condition", c);
}
public SemanticInfo getPostCondition() {
return (SemanticInfo)getProperty("post_condition");
}
public void setSemantics(SemanticInfo c) {
defineProperty("semantics", c);
}
public SemanticInfo getSemantics() {
return (SemanticInfo)getProperty("semantics");
}
public int getUid() {
return getPropertyAsInteger("uid");
}
public void setUid(int uid) {
defineProperty("uid", uid);
}
// Overridden, has different name for some reason
public String getExportControl() {
return getPropertyAsString("opExportControl");
}
public void setExportControl(String o) {
defineProperty("opExportControl", o);
}
public void accept(Visitor v) {
v.visit(this);
}
}