⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 node.java

📁 java算法大全
💻 JAVA
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -