/*
Copyright (C) 2001-2002 Renaud Pawlak, Laurent Martelli
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA */
package org.objectweb.jac.aspects.gui;
public class Constants {
/** The subpanes are separated by an horizontal splitter */
public static final int HORIZONTAL=0;
/** The upper subpanes are separated by a vertical splitter */
public static final int HORIZONTAL_UP=1;
/** The down subpanes are separated by a vertical splitter */
public static final int HORIZONTAL_DOWN=2;
/** The subpanes are separated by a vertical splitter */
public static final int VERTICAL=3;
/** The left subpanes are separated by an horizontal splitter */
public static final int VERTICAL_LEFT=4;
/** The right subpanes are separated by an horizontal splitter */
public static final int VERTICAL_RIGHT=5;
public static final int NONE=0;
public static final int LEFT=1;
public static final int TOP=2;
public static final int RIGHT=3;
public static final int BOTTOM=4;
public static final int CENTER=5;
}