graphvertexview.java
来自「JGraph扩展应用。自定义Renderer,自定义视图View实现自定义工作流」· Java 代码 · 共 29 行
JAVA
29 行
/**
*
*/
package flow.graph.gui.graph.item;
import org.jgraph.graph.GraphCellEditor;
import org.jgraph.graph.VertexView;
/**
* @author Administrator
*
*/
public class GraphVertexView extends VertexView{
public static GraphTextEditor editor = new GraphTextEditor();
public GraphVertexView(){
super();
}
public GraphVertexView(Object obj){
super(obj);
}
public GraphCellEditor getEditor() {
return editor;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?