XLabel.java
/*
* Created on 2005/07/28
* Copyright (C) 2005 Koga Laboratory. All rights reserved.
*
*/
package org.mklab.tool.graph.gnuplot.decoration;
/**
* Xラベルを表すクラスです。
*
* @author koga
* @version $Revision: 1.6 $, 2005/07/28
*/
public class XLabel extends Label {
/**
* コンストラクター
*/
@SuppressWarnings("nls")
public XLabel() {
this("");
}
/**
* コンストラクター
*
* @param text ラベルテキスト
*/
public XLabel(String text) {
super(text);
}
/**
* コンストラクター
*
* @param text ラベルテキスト
* @param xOffset 表示位置のx方向のオフセット
* @param yOffset 表示位置のy方向のオフセット
*/
public XLabel(String text, double xOffset, double yOffset) {
super(text, xOffset, yOffset);
}
/**
* 設定するためのコマンド文字列を得る。
*
* @return 設定するためのコマンド文字列
*/
@SuppressWarnings("nls")
public String getCommand() {
return "set xlabel '" + getText() + "' offset " + getXOffset() + "," + getYOffset();
}
}