00001 /* 00002 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab 00003 * Copyright (C) 2007 - INRIA - Marouane BEN JELLOUL 00004 * 00005 * This file must be used under the terms of the CeCILL. 00006 * This source file is licensed as described in the file COPYING, which 00007 * you should have received as part of this distribution. The terms 00008 * are also available at 00009 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt 00010 * 00011 */ 00012 00013 package org.scilab.modules.gui.layout; 00014 00019 public interface BorderLayout extends LayoutManager { 00020 // TODO : Add the methods that are usefull for a BorderLayout 00021 00025 String CENTER = java.awt.BorderLayout.CENTER; 00026 00030 String EAST = java.awt.BorderLayout.EAST; 00031 00035 String NORTH = java.awt.BorderLayout.NORTH; 00036 00040 String SOUTH = java.awt.BorderLayout.SOUTH; 00041 00045 String WEST = java.awt.BorderLayout.WEST; 00046 }
1.5.5