📄 graphactivityinterface.java
字号:
package org.enhydra.jawe.components.graph;import java.awt.Point;import java.util.Set;import org.jgraph.graph.DefaultGraphCell;/** * Interface for defining Activity graph object. * * @author Sasa Bojanic */public abstract class GraphActivityInterface extends DefaultGraphCell implements WorkflowElement, Linkable { /** * Gets the port associated with this activity. */ public abstract GraphPortInterface getPort (); /** * Gets all activities that reference this one. */ public abstract Set getReferencingActivities (); /** * Gets all activities that this activity references. */ public abstract Set getReferencedActivities (); public abstract Point getOffset (); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -