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
12 package org.scilab.modules.gui.uitable;
14 import org.scilab.modules.gui.text.SimpleText;
17 * Interface for ScilabUiTableBridge the associated object to Scilab GUIs UiTable
20 public interface SimpleUiTable extends SimpleText {
23 * Sets the column names for uitable
24 * @param names the column names
26 void setColumnNames(String[] names);
29 * Sets the row name for uitable
30 * @param names the row names
32 void setRowNames(String[] names);
35 * Sets the data for uitable
36 * @param text the data as string
38 void setData(String[] text);