DoubleOutputPort.java

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

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

/**
 * 出力ポート(出力端)を表すクラスです。
 * 
 * @author koga
 * @version $Revision: 1.8 $
 */
public class DoubleOutputPort extends DoubleContinuousSink {

  /** タグ */
  private String tag;

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

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

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