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