Package com.gitblit.models

Examples of com.gitblit.models.NavLink$DropDownMenuNavLink


    DataView<NavLink> linksView = new DataView<NavLink>("navLink", refsDp) {
      private static final long serialVersionUID = 1L;

      @Override
      public void populateItem(final Item<NavLink> item) {
        NavLink navLink = item.getModelObject();
        String linkText = navLink.translationKey;
        try {
          // try to lookup translation key
          linkText = getString(navLink.translationKey);
        } catch (Exception e) {
View Full Code Here

TOP

Related Classes of com.gitblit.models.NavLink$DropDownMenuNavLink

Copyright © 2018 www.massapicom. 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.