node.java

来自「该资料含有常用的计算机算法资料」· Java 代码 · 共 28 行

JAVA
28
字号
// Node - generic nodes in block diagrams//public class Node {	private Object node_object;	private int node_type, nt;	FunctionBlock Fbk;		public static final int SPtype = 1;	public static final int FBtype = 2;	public static final int IOtype = 3;	public Node( Object no, int nt ) {		node_object = no;		node_type = nt;		}	public int NodeType() {		return nt;		}	public Object getObject( ) {		return node_object;		}	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?