Package com.gitblit.models.FederationModel

Examples of com.gitblit.models.FederationModel.RepositoryStatus


        counter = 0;
      }

      @Override
      public void populateItem(final Item<RepositoryStatus> item) {
        final RepositoryStatus entry = item.getModelObject();
        item.add(WicketUtils.getPullStatusImage("statusIcon", entry.status));
        item.add(new Label("name", entry.name));
        item.add(new Label("status", entry.status.name()));
        WicketUtils.setAlternatingBackground(item, counter);
        counter++;
View Full Code Here

TOP

Related Classes of com.gitblit.models.FederationModel.RepositoryStatus

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.