本文整理匯總了Java中org.gwtbootstrap3.client.ui.base.HasId類的典型用法代碼示例。如果您正苦於以下問題:Java HasId類的具體用法?Java HasId怎麽用?Java HasId使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
HasId類屬於org.gwtbootstrap3.client.ui.base包,在下文中一共展示了HasId類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: ScrollSpy
import org.gwtbootstrap3.client.ui.base.HasId; //導入依賴的package包/類
private ScrollSpy(final Element spyOn, final HasId target) {
final String id = target.getId();
if (id == null || id.isEmpty()) {
throw new IllegalArgumentException("ScrollSpy target element must have id");
}
this.spyOn = spyOn;
this.target = "#" + id;
init(this.spyOn, this.target);
}
示例2: scrollSpy
import org.gwtbootstrap3.client.ui.base.HasId; //導入依賴的package包/類
/**
* Attaches ScrollSpy to document {@code <body>} and with the specified
* target element that <strong>must</strong> have an ID.
*
* @param target Target element having an ID
* @return ScrollSpy
*/
public static ScrollSpy scrollSpy(final HasId target) {
return new ScrollSpy((Element) Document.get().getBody().cast(), target);
}