DoubleInputPort.java

/**
 * $Id: InputPort.java,v 1.12 2007/09/28 01:10:55 koga Exp $
 *
 * Copyright (C) 2004-2005 Koga Laboratory. All rights reserved.
 */

package org.mklab.tool.control.system.source;

/**
 * 入力ポート(入力端)を表すクラスです。
 * 
 * @author koga
 * @version $Revision: 1.12 $
 */
public class DoubleInputPort extends DoubleContinuousSource {

  /** タグ */
  private String tag;

  /**
   * 新しく生成された<code>InputPort</code>オブジェクトを初期化します。
   */
  public DoubleInputPort() {
    super();
  }

  /**
   * 識別するためのタグを返します。
   * 
   * @return 識別するためのタグ
   */
  public String getTag() {
    return this.tag;
  }

  /**
   * 識別するためのタグを設定します。
   * 
   * @param tag タグ
   */
  public void setTag(final String tag) {
    this.tag = tag;
  }
}