Package com.gitblit.Constants

Examples of com.gitblit.Constants.FederationStrategy


    @Override
    public Component getListCellRendererComponent(JList list, Object value,
        int index, boolean isSelected, boolean cellHasFocus) {
      if (value instanceof FederationStrategy) {
        FederationStrategy strategy = (FederationStrategy) value;
        switch (strategy) {
        case EXCLUDE:
          setText(Translation.get("gb.excludeFromFederation"));
          break;
        case FEDERATE_THIS:
View Full Code Here

TOP

Related Classes of com.gitblit.Constants.FederationStrategy

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.