DataStyle.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 DataStyle implements GnuplotComponent {

  /** グラフスタイル */
  private String style = "lines"; //$NON-NLS-1$

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

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

  /**
   * グラフのスタイルを設定します。
   * 
   * @param style スタイル
   */
  public void setStyle(String style) {
    this.style = style;
  }

  /**
   * グラフのスタイルを返します。
   * 
   * @return スタイル
   */
  public String getStyle() {
    return this.style;
  }
}