Examples of MiniGlossaryLink


Examples of org.cast.isi.panel.MiniGlossaryLink

    // link to a short glossary definition modal or main glossary window
    } else if (wicketId.startsWith("glossaryLink_")) {
      IModel<String> wordModel = new Model<String>(elt.getAttribute("word"));
      String glossaryLinkType = ISIApplication.get().getGlossaryLinkType();
      if (glossaryLinkType.equals(ISIApplication.GLOSSARY_TYPE_MODAL) && pageHasMiniGlossary() && miniGlossaryModal != null) {
        return new MiniGlossaryLink(wicketId, wordModel, miniGlossaryModal);
       
      } else if (glossaryLinkType.equals(ISIApplication.GLOSSARY_TYPE_INLINE)) {
        return new EmptyPanel(wicketId);
       
      } else {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.