]> source.dussan.org Git - aspectj.git/commitdiff
reorg to make patching easier
authoraclement <aclement>
Sat, 7 Nov 2009 18:43:39 +0000 (18:43 +0000)
committeraclement <aclement>
Sat, 7 Nov 2009 18:43:39 +0000 (18:43 +0000)
org.aspectj.matcher/src/org/aspectj/weaver/ResolvedType.java

index c939f1ea931b9934e47e9ef1f7707525d66ddbdc..8721c092d5bcfc9b65d14fd743ba0e4747bd07c1 100644 (file)
@@ -288,6 +288,10 @@ public abstract class ResolvedType extends UnresolvedType implements AnnotatedEl
         * @param wantDeclaredParents true if the caller even wants those parents introduced via declare parents
         * @return an iterator over all types in the hierarchy of this type
         */
+       public Iterator<ResolvedType> getHierarchy() {
+               return getHierarchy(false, false);
+       }
+
        public Iterator<ResolvedType> getHierarchy(final boolean wantGenerics, final boolean wantDeclaredParents) {
 
                final Iterators.Getter<ResolvedType, ResolvedType> interfaceGetter = new Iterators.Getter<ResolvedType, ResolvedType>() {