| Method from net.jbeans.bean.model.DataFlow Detail: |
public void cleanup() {
}
|
abstract public Object createAdapter()
Creates an adapter, which is one of "dynamic" or "static" adapters.
A dynamic adapter handles a Java event and a static adapter invokes
once the target method when it is connected. |
public IONode getSourceNode() {
return this.sourceNode;
}
|
public Method getTargetMethod() {
return this.targetMethod;
}
Get the value of targetMethod. |
public IONode getTargetNode() {
return this.targetNode;
}
|
public String getUniqueName() {
setUniqueName(toString());
return super.getUniqueName();
}
Returns a unique name of this dataflow object. |
public boolean isAssociatedWith(BeanNode beanNode) {
return ((this.sourceNode.getBeanNode() == beanNode) ||
(this.targetNode.getBeanNode() == beanNode)) ? true : false;
}
|
public boolean isAssociatedWith(IONode node) {
return ((node == this.targetNode) ||
(node == this.sourceNode)) ? true : false;
}
|
public void setSourceNode(IONode v) {
this.sourceNode = v;
if (this.sourceNode != null) {
BeanNode beanNode = this.sourceNode.getBeanNode();
if (beanNode != null) {
beanNode.addDataFlow(this);
}
}
firePropertyChange("SourceNode");
}
|
public void setTargetMethod(Method v) {
this.targetMethod = v;
firePropertyChange("TargetMethod");
}
Set the value of targetMethod. |
public void setTargetNode(IONode v) {
this.targetNode = v;
firePropertyChange("TargetNode");
}
|
public String toString() {
return "DataFlow: " + this.sourceNode.getBeanNode().getBeanName() + " to " + this.targetNode.getBeanNode().getBeanName();
}
|