2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2010 - Han DONG
5 * This file must be used under the terms of the CeCILL.
6 * This source file is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at
9 * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
13 package org.scilab.modules.gui.uitable;
15 import org.scilab.modules.gui.text.Text;
18 * Interface for UiTable associated to objects in Scilab GUIs
21 public interface UiTable extends Text {
24 * Gets this Bridge component object
25 * @return this Bridge component object
27 SimpleUiTable getAsSimpleUiTable();
30 * Sets the column names for uitable
31 * @param names the column names
33 void setColumnNames(String[] names);
36 * Sets the row name for uitable
37 * @param names the row names
39 void setRowNames(String[] names);
42 * Sets the data for uitable
44 void setData(String text);