LineWidth.java

/*
 * Created on 2005/08/04
 * Copyright (C) 2005 Koga Laboratory. All rights reserved.
 *
 */
package org.mklab.tool.graph.gnuplot.decoration;

/**
 * 線の幅を表すクラスです。
 * 
 * @author koga
 * @version $Revision: 1.9 $, 2005/08/04
 */
public class LineWidth implements GnuplotComponent {

  /** 線の幅 */
  private int lineWidth = 1;

  /**
   * 新しく生成された<code>DataStyle</code>オブジェクトを初期化します。
   * 
   * @param lineWidth 線の幅
   */
  public LineWidth(final int lineWidth) {
    this.lineWidth = lineWidth;
  }

  /**
   * @see org.mklab.tool.graph.gnuplot.decoration.GnuplotComponent#getCommand()
   */
  public String getCommand() {
    return ""; //$NON-NLS-1$
  }

  /**
   * 線の幅を設定します。
   * 
   * @param lineWidth 線の幅
   */
  public void setLineWidth(int lineWidth) {
    this.lineWidth = lineWidth;
  }

  /**
   * 線の幅を返します。
   * 
   * @return 線の幅
   */
  public int getLineWidth() {
    return this.lineWidth;
  }
}