HomeSort by relevance Sort by last modified time
    Searched refs:ConstructorAPI (Results 1 - 7 of 7) sorted by null

  /external/jdiff/src/jdiff/
ConstructorAPI.java 16 class ConstructorAPI implements Comparable {
36 public ConstructorAPI(String type, Modifiers modifiers) {
41 /** Compare two ConstructorAPI objects by type and modifiers. */
43 ConstructorAPI constructorAPI = (ConstructorAPI)o;
44 int comp = type_.compareTo(constructorAPI.type_);
47 comp = exceptions_.compareTo(constructorAPI.exceptions_);
50 comp = modifiers_.compareTo(constructorAPI.modifiers_);
53 if (APIComparator.docChanged(doc_, constructorAPI.doc_)
    [all...]
MergeChanges.java 47 ConstructorAPI[] ctorArr = new ConstructorAPI[classDiff.ctorsRemoved.size()];
48 ctorArr = (ConstructorAPI[])classDiff.ctorsRemoved.toArray(ctorArr);
50 ConstructorAPI removedCtor = ctorArr[ctorIdx];
78 public static void mergeRemoveAddCtor(ConstructorAPI removedCtor, ClassDiff classDiff, PackageDiff pkgDiff) {
88 ConstructorAPI addedCtor = (ConstructorAPI)(classDiff.ctorsAdded.get(startAdded));
API.java 52 public ConstructorAPI currCtor_ = null;
134 dumpCtor((ConstructorAPI)(iter.next()), indent + indentInc);
178 public static void dumpCtor(ConstructorAPI c, int indent) {
APIComparator.java 357 * The compareTo method in the ConstructorAPI class acts only upon the type.
373 ConstructorAPI oldCtor = (ConstructorAPI)(iter.next());
384 ConstructorAPI newCtor = (ConstructorAPI)(newClass.ctors_.get(0));
422 ConstructorAPI newCtor = (ConstructorAPI)(iter.next());
    [all...]
HTMLIndexes.java 563 ConstructorAPI ctor = (ConstructorAPI)(iterCtor.next());
568 ConstructorAPI ctor = (ConstructorAPI)(iterCtor.next());
    [all...]
XMLToAPI.java 283 api_.currCtor_ = new ConstructorAPI(t, modifiers);
HTMLReportGenerator.java 553 ConstructorAPI ctorAPI = (ConstructorAPI)(iter.next());
569 ConstructorAPI ctorAPI = (ConstructorAPI)(iter.next());
    [all...]

Completed in 217 milliseconds