Package proguard.classfile.editor
Class SubclassAdder
- java.lang.Object
-
- proguard.classfile.editor.SubclassAdder
-
- All Implemented Interfaces:
ClassVisitor
public class SubclassAdder extends java.lang.Object implements ClassVisitor
ThisClassVisitor
adds the given class to the list of subclasses of the classes that it visits.
-
-
Constructor Summary
Constructors Constructor Description SubclassAdder(Clazz subclass)
Creates a new SubclassAdder that will add the given subclass.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
visitAnyClass(Clazz clazz)
Visits any Clazz instance.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface proguard.classfile.visitor.ClassVisitor
visitLibraryClass, visitProgramClass
-
-
-
-
Constructor Detail
-
SubclassAdder
public SubclassAdder(Clazz subclass)
Creates a new SubclassAdder that will add the given subclass.
-
-
Method Detail
-
visitAnyClass
public void visitAnyClass(Clazz clazz)
Description copied from interface:ClassVisitor
Visits any Clazz instance. The more specific default implementations of this interface delegate to this method.- Specified by:
visitAnyClass
in interfaceClassVisitor
-
-