本文整理汇总了Java中org.jboss.errai.common.client.dom.Option.setText方法的典型用法代码示例。如果您正苦于以下问题:Java Option.setText方法的具体用法?Java Option.setText怎么用?Java Option.setText使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jboss.errai.common.client.dom.Option
的用法示例。
在下文中一共展示了Option.setText方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addOption
import org.jboss.errai.common.client.dom.Option; //导入方法依赖的package包/类
public void addOption(final String text,
final String subText,
final String value,
final Boolean selected) {
final Option option = (Option) document.createElement("option");
option.setText(text);
option.setValue(value);
option.setSelected(selected);
if (isNullOrEmpty(subText) == false) {
option.setAttribute("data-subtext",
subText);
}
select.add(option);
}
示例2: addModelField
import org.jboss.errai.common.client.dom.Option; //导入方法依赖的package包/类
@Override
public void addModelField(String property,
boolean selected) {
Option option = (Option) document.createElement("option");
option.setText(property);
option.setValue(property);
option.setSelected(selected);
bindings.add(option);
}
示例3: createOption
import org.jboss.errai.common.client.dom.Option; //导入方法依赖的package包/类
private Option createOption(final Pair<String, String> optionPair) {
Option option = (Option) document.createElement("option");
option.setText(optionPair.getK1());
option.setValue(optionPair.getK2());
return option;
}
示例4: createOption
import org.jboss.errai.common.client.dom.Option; //导入方法依赖的package包/类
Option createOption(String ou) {
Option option = (Option) document.createElement("option");
option.setText(ou);
option.setValue(ou);
return option;
}
示例5: createOption
import org.jboss.errai.common.client.dom.Option; //导入方法依赖的package包/类
private Option createOption(final String value) {
Option option = (Option) document.createElement("option");
option.setText(value);
return option;
}