/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package org.autoplot.layout;

/**
 * Constants for specifying layout
 * @author jbf
 */
public class LayoutConstants {
    public static final Object ABOVE= "above";
    public static final Object BELOW= "below"; // Jython code uses this value.  See ScriptContext.
    public static final Object RIGHT="right";
    public static final Object LEFT="left";
}