/** * All files in the distribution of BLOAT (Bytecode Level Optimization and * Analysis tool for Java(tm)) are Copyright 1997-2001 by the Purdue * Research Foundation of Purdue University. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ package EDU.purdue.cs.bloat.editor; import EDU.purdue.cs.bloat.reflect.*; /** * An EditorContext supplies a means of loading and editing classes. * Note that a number of these methods are identical to methods in * Editor. It is expected that an EditorContext will have * a different caching (of ClassEditors, etc.) policy than * Editor does. Hence, the methods in EditorContext should * be used to edit classes, etc. */ public interface EditorContext { /** * Loads a class into BLOAT */ public ClassInfo loadClass(String className) throws ClassNotFoundException; /** * Creates a new ClassInfo * * @param modifiers * The modifiers describing the newly-created class * @param classIndex * The index of the name of the newly-created class in its * constant pool * @param superClassIndex * The index of the name of the newly-created class's superclass * in its constant pool * @param interfaceIndexes * The indexes of the names of the interfaces that the * newly-created class implements * @param constants * The constant pool for the newly created class (a list of * {@link Constant}s). */ public ClassInfo newClassInfo(int modifiers, int classIndex, int superClassIndex, int[] interfaceIndexes, java.util.List constants); /** * Returns the ClassHierarchy of all classes and interfaces known * to BLOAT. */ public ClassHierarchy getHierarchy(); /** * Returns a ClassEditor for editing a new class with the * given name. It will override any class with the given name that is * already being edited. */ public ClassEditor newClass(int modifiers, String className, Type superType, Type[] interfaces); /** * Returns a ClassEditor used to edit a class of a given name. */ public ClassEditor editClass(String className) throws ClassNotFoundException, ClassFormatException; /** * Returns a ClassEditor used to edit a class described by a * given Type. */ public ClassEditor editClass(Type classType) throws ClassNotFoundException, ClassFormatException; /** * Returns a ClassEditor used to edit a class described by a * given ClassInfo. */ public ClassEditor editClass(ClassInfo info); /** * Returns a FieldEditor for editing a FieldInfo. */ public FieldEditor editField(FieldInfo info); /** * Returns a FieldEditor for editing a field. */ public FieldEditor editField(MemberRef field) throws NoSuchFieldException; /** * Returns a MethodEditor for editing a method. */ public MethodEditor editMethod(MethodInfo info); /** * Returns a MethodEditor for editing a method. */ public MethodEditor editMethod(MemberRef method) throws NoSuchMethodException; /** * Signals that we are done editing a method. The object used to model it * may be reclaimed. */ public void release(MethodInfo info); /** * Signals that we are done editing a field. The object used to model it may * be reclaimed. */ public void release(FieldInfo info); /** * Signals that we are done editing a class. The object used to model it may * be reclaimed. */ public void release(ClassInfo info); /** * Commits the changes made to a class. */ public void commit(ClassInfo info); /** * Commits the changes made to a method. */ public void commit(MethodInfo info); /** * Commits the changes made to a field. */ public void commit(FieldInfo info); /** * Commits all changes made to classes, methods, and fields. */ public void commit(); }