cb.petal.UsesRelationship 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.Collection;
/**
* Represents uses relationship in use case diagrams, in class
* diagrams this is also used to express dependency relationships.
*
* @version $Id: UsesRelationship.java,v 1.11 2001/07/09 07:48:52 dahm Exp $
* @author M. Dahm
*/
public class UsesRelationship extends Relationship implements AccessQualified {
public UsesRelationship(PetalNode parent, Collection params) {
super(parent, "Uses_Relationship", params);
}
public UsesRelationship() {
super("Uses_Relationship");
}
public PetalNodeList getAttributes() {
return (PetalNodeList)getProperty("attributes");
}
public void setAttributes(PetalNodeList o) {
defineProperty("attributes", o);
}
public String getExportControl() {
return getPropertyAsString("exportControl");
}
public void setExportControl(String o) {
defineProperty("exportControl", o);
}
public Value getClientCardinality() {
return (Value)getProperty("client_cardinality");
}
public void setClientCardinality(Value o) {
defineProperty("client_cardinality", o);
}
public Value getSupplierCardinality() {
return (Value)getProperty("supplier_cardinality");
}
public void setSupplierCardinality(Value o) {
defineProperty("supplier_cardinality", o);
}
public void accept(Visitor v) {
v.visit(this);
}
}