001    /*
002    
003      Copyright (C) 2001-2002 Renaud Pawlak, Laurent Martelli
004      
005      This program is free software; you can redistribute it and/or modify
006      it under the terms of the GNU Lesser General Public License as
007      published by the Free Software Foundation; either version 2 of the
008      License, or (at your option) any later version.
009    
010      This program is distributed in the hope that it will be useful, but
011      WITHOUT ANY WARRANTY; without even the implied warranty of
012      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
013      Lesser General Public License for more details.
014    
015      You should have received a copy of the GNU Lesser General Public
016      License along with this program; if not, write to the Free Software
017      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
018      USA */
019    
020    package org.objectweb.jac.aspects.gui;
021    
022    public class Constants {
023       /** The subpanes are separated by an horizontal splitter */
024       public static final int HORIZONTAL=0;
025       /** The upper subpanes are separated by a vertical splitter */
026       public static final int HORIZONTAL_UP=1;
027       /** The down subpanes are separated by a vertical splitter */
028       public static final int HORIZONTAL_DOWN=2;
029       /** The subpanes are separated by a vertical splitter */
030       public static final int VERTICAL=3;
031       /** The left subpanes are separated by an horizontal splitter */
032       public static final int VERTICAL_LEFT=4;
033       /** The right subpanes are separated by an horizontal splitter */
034       public static final int VERTICAL_RIGHT=5;
035    
036       public static final int NONE=0;
037       public static final int LEFT=1;
038       public static final int TOP=2;
039       public static final int RIGHT=3;
040       public static final int BOTTOM=4;   
041       public static final int CENTER=5;
042    }
043