Package org.databene.mad4db

Examples of org.databene.mad4db.ChangeSeverity.compareTo()


    this.subChanges = new ArrayList<StructuralChange<? extends DBObject>>();
  }

  public void addSubChange(StructuralChange<? extends DBObject> subChange) {
    ChangeSeverity subChangeSeverity = subChange.getSeverity();
    if (this.severity == ChangeSeverity.UNKNOWN || (subChangeSeverity != ChangeSeverity.UNKNOWN && subChangeSeverity.compareTo(this.severity) > 0))
      this.severity = subChangeSeverity;
    subChanges.add(subChange);
  }

  public StructuralChange<?> getSubChangeByCheckName(String checkName) {
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.