本文整理汇总了Java中com.codename1.ui.table.Table类的典型用法代码示例。如果您正苦于以下问题:Java Table类的具体用法?Java Table怎么用?Java Table使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Table类属于com.codename1.ui.table包,在下文中一共展示了Table类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: checkType
import com.codename1.ui.table.Table; //导入依赖的package包/类
private int checkType(boolean disregardScrollPane)
{
Component c = this.c;
if (c instanceof TextField) {
return TYPE_TEXT_FIELD;
} else if (c instanceof Label) {
return TYPE_LABEL;
} else if (c instanceof RadioButton || c instanceof CheckBox) {
return TYPE_CHECK_BOX;
} else if (c instanceof Button) {
return TYPE_BUTTON;
} else if (c instanceof ComboBox) {
return TYPE_COMBO_BOX;
} else if (c instanceof TextArea) {
return TYPE_TEXT_AREA;
} else if (c instanceof Container) {
return TYPE_PANEL;
} else if (c instanceof List) {
return TYPE_LIST;
} else if (c instanceof Table) {
return TYPE_TABLE;
} else if (c instanceof BaseSpinner) {
return TYPE_SPINNER;
} else if (c instanceof Tabs) {
return TYPE_TABBED_PANE;
} else if (c instanceof InfiniteProgress) {
return TYPE_PROGRESS_BAR;
} else if (c instanceof Slider) {
return TYPE_SLIDER;
}
return TYPE_UNKNOWN;
}
示例2: createTableDemo
import com.codename1.ui.table.Table; //导入依赖的package包/类
private Container createTableDemo() {
Container tableContainer = new Container(new BoxLayout(BoxLayout.Y_AXIS));
Table dt = new Table();
tableContainer.addComponent(dt);
return tableContainer;
}