Key.java
/*
* Created on 2005/08/01
* Copyright (C) 2005 Koga Laboratory. All rights reserved.
*
*/
package org.mklab.tool.graph.gnuplot.decoration;
/**
* キーを表すクラスです。
*
* @author koga
* @version $Revision: 1.7 $, 2005/08/01
*/
public class Key extends Switchable {
/**
* コンストラクター
*/
public Key() {
this(false);
}
/**
* コンストラクター
*
* @param visible 表示ならtrue、非表示ならfalse
*/
public Key(boolean visible) {
setOn(visible);
}
/**
* @see org.mklab.tool.graph.gnuplot.decoration.GnuplotComponent#getCommand()
*/
public String getCommand() {
if (isOn()) {
return "set key default"; //$NON-NLS-1$
}
return "unset key"; //$NON-NLS-1$
}
}