/* * 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.5 $, 2005/08/04 */ public class ButtomMargin extends Margin { /** * @see org.mklab.tool.graph.gnuplot.decoration.GnuplotComponent#getCommand() */ public String getCommand() { return "set bmargin " + getMargin(); //$NON-NLS-1$ } }