cb.petal.TransView 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 TransView object
*
* @version $Id: TransView.java,v 1.8 2001/06/22 09:10:36 dahm Exp $
* @author M. Dahm
*/
public class TransView extends QuiduView {
public TransView(PetalNode parent, Collection params, int tag) {
super(parent, "TransView", params, tag);
}
public TransView() {
super("TransView");
}
public boolean getXOffset() {
return getPropertyAsBoolean("x_offset");
}
public void setXOffset(boolean o) {
defineProperty("x_offset", o);
}
public SegLabel getLabel() {
return (SegLabel)getProperty("label");
}
public void setLabel(SegLabel o) {
defineProperty("label", o);
}
public PetalNodeList getVertices() {
return (PetalNodeList)getProperty("vertices");
}
public void setVertices(PetalNodeList o) {
defineProperty("vertices", o);
}
public Location getOriginAttachment() {
return (Location)getProperty("origin_attachment");
}
public void setOriginAttachment(Location o) {
defineProperty("origin_attachment", o);
}
public Location getTerminalAttachment() {
return (Location)getProperty("terminal_attachment");
}
public void setTerminalAttachment(Location o) {
defineProperty("terminal_attachment", o);
}
public void accept(Visitor v) {
v.visit(this);
}
}