nodeaddednotification.java

来自「linux下用于移动节点的移动活动生成工具」· Java 代码 · 共 60 行

JAVA
60
字号
package de.uni_stuttgart.informatik.canu.mobisim.notifications;

import de.uni_stuttgart.informatik.canu.mobisim.core.*;

/**
 * Title:        Canu Mobility Simulation Environment
 * Description:
 * Copyright:    Copyright (c) 2001-2003
 * Company:      University of Stuttgart
 * @author Canu Research group
 * @version 1.1
 */

/**
 * This class implements the notification about adding a node to simulation
 * @author Illya Stepanov
 */
public class NodeAddedNotification extends Notification
{
  /**
   * Node added to simulation
   */
   protected Node node;

  /**
   * Constructor. <br>
   * <br>
   * @param sender notification's sender
   * @param receiver notification's receiver
   * @param node node added to simulation
   */
  public NodeAddedNotification(Object sender, Object receiver, Node node)
  {
    super(sender, receiver);
    this.node = node;
  }

  /**
   * Returns the node. <br>
   * <br>
   * @return node
   */
  public Node getNode()
  {
    return node;
  }

  /**
   * Returns a string representation of the object. <br>
   * <br>
   * @return string representation of the object
   */
  public String toString()
  {
    Universe u = Universe.getReference();

    return "at "+u.getTimeAsString()+" "+node.getID()+
        " was added to simulation";
  }
}

⌨️ 快捷键说明

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