本文整理汇总了Java中com.google.gwt.dom.client.OListElement类的典型用法代码示例。如果您正苦于以下问题:Java OListElement类的具体用法?Java OListElement怎么用?Java OListElement使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
OListElement类属于com.google.gwt.dom.client包,在下文中一共展示了OListElement类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: appendList
import com.google.gwt.dom.client.OListElement; //导入依赖的package包/类
public final void appendList(ArrayList<String> choices, boolean ordered, String additionalStyle) {
if (choices == null || choices.size() == 0) {
return;
}
FlowPanel htmlList = new FlowPanel(ordered? OListElement.TAG : UListElement.TAG);
if (additionalStyle != null && additionalStyle.length() > 0) {
_promptChar.getElement().setAttribute("style", additionalStyle);
}
for (String choice : choices) {
FlowPanel item = new FlowPanel(LIElement.TAG);
item.getElement().setInnerText(choice);
htmlList.add(item);
}
appendAndScrollOrFocusAsAppropriate(htmlList);
}
示例2: setId
import com.google.gwt.dom.client.OListElement; //导入依赖的package包/类
public void setId(String id)
{
((OListElement) getElement().cast()).setId(id);
}
示例3: List
import com.google.gwt.dom.client.OListElement; //导入依赖的package包/类
@UiConstructor
public List(String tag) {
super(OListElement.TAG.equals(tag) || UListElement.TAG.equals(tag) ? tag : UListElement.TAG);
this.setType(this.type);
}
示例4: Breadcrumb
import com.google.gwt.dom.client.OListElement; //导入依赖的package包/类
public Breadcrumb() {
super(OListElement.TAG);
this.endConstruct();
}