Package com.google.gerrit.reviewdb.client

Examples of com.google.gerrit.reviewdb.client.ApprovalCategory


    vals.add(value(cat, -1, "Fails"));
    return new ApprovalType(cat, vals);
  }

  private static ApprovalCategory category(int pos, String id, String name) {
    ApprovalCategory cat;
    cat = new ApprovalCategory(new ApprovalCategory.Id(id), name);
    cat.setPosition((short) pos);
    return cat;
  }
View Full Code Here

TOP

Related Classes of com.google.gerrit.reviewdb.client.ApprovalCategory

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.