element.java

来自「The Java Network Simulator is a Java imp」· Java 代码 · 共 28 行

JAVA
28
字号

package jns.element;

import jns.trace.Traceable;

/**
 Element is the abstract superclass of all the static elements in the
 simulator, such as Nodes, Links, etc.
 */
public abstract class Element extends Traceable
{

    /**
     Ask the element to update itself.
     */
    public abstract void update();


    /**
     Dump some descriptive information about the element for debugging
     purposes. This will most of the time display information about contained
     elements as well.
     */
    public abstract void dump();


}

⌨️ 快捷键说明

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