當前位置: 首頁>>代碼示例>>Java>>正文


Java HasId類代碼示例

本文整理匯總了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);
    }
 
開發者ID:gwtbootstrap3,項目名稱:gwtbootstrap3,代碼行數:14,代碼來源:ScrollSpy.java

示例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);
}
 
開發者ID:gwtbootstrap3,項目名稱:gwtbootstrap3,代碼行數:11,代碼來源:ScrollSpy.java


注:本文中的org.gwtbootstrap3.client.ui.base.HasId類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。