Examples of annotationName()


Examples of sbt.testing.AnnotatedFingerprint.annotationName()

public abstract class AbstractAnnotatedFingerprint implements AnnotatedFingerprint {
  @Override
  public boolean equals(Object obj) {
    if (!(obj instanceof AnnotatedFingerprint)) return false;
    AnnotatedFingerprint f = (AnnotatedFingerprint) obj;
    return annotationName().equals(f.annotationName()) && isModule() == f.isModule();
  }
}
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.