Uses of Class
openjava.mop.CannotAlterException

Packages that use CannotAlterException
openjava.mop Provides classes that are fundamental to the design of the OpenJava Meta-Object Protocols (MOP).  
 

Uses of CannotAlterException in openjava.mop
 

Methods in openjava.mop that throw CannotAlterException
 ExpressionList OJMethod.getParameterVariables()
           
 java.lang.String[] OJMethod.getParameters()
           
 MethodDeclaration OJMethod.getSourceCode()
           
 StatementList OJMethod.getBody()
           
 void OJMethod.setName(java.lang.String name)
           
 void OJMethod.setModifiers(int mods)
           
 void OJMethod.setModifiers(OJModifier mods)
           
 void OJMethod.setReturnType(OJClass type)
           
 void OJMethod.setExceptionTypes(OJClass[] types)
           
 void OJMethod.addExceptionType(OJClass type)
           
 StatementList OJMethod.setBody(StatementList stmts)
           
 FieldDeclaration OJField.getSourceCode()
           
 void OJField.setDeclaringClass(OJClass parent)
           
 void OJField.setName(java.lang.String name)
           
 void OJField.setModifiers(int mods)
           
 void OJField.setModifiers(OJModifier mods)
           
 void OJField.setType(OJClass type)
           
 ClassDeclaration OJClass.getSourceCode()
           
protected  java.lang.String OJClass.setName(java.lang.String simple_name)
          not implemented yet
protected  OJClass OJClass.setSuperclass(OJClass clazz)
           
protected  OJClass[] OJClass.setInterfaces(OJClass[] classes)
           
protected  void OJClass.addInterface(OJClass clazz)
           
protected  OJClass OJClass.addClass(OJClass clazz)
           
protected  OJClass OJClass.removeClass(OJClass clazz)
           
 OJField OJClass.addField(OJField field)
           
 OJField OJClass.removeField(OJField field)
           
protected  OJMethod OJClass.addMethod(OJMethod method)
           
protected  OJMethod OJClass.removeMethod(OJMethod method)
           
protected  OJConstructor OJClass.addConstructor(OJConstructor constr)
           
protected  OJConstructor OJClass.removeConstructor(OJConstructor constr)
           
protected  java.lang.String OJClass.putMetaInfo(java.lang.String key, java.lang.String value)
           
 ExpressionList OJConstructor.getParameterVariables()
           
 java.lang.String[] OJConstructor.getParameters()
           
 ConstructorDeclaration OJConstructor.getSourceCode()
           
 StatementList OJConstructor.getBody()
           
 ConstructorInvocation OJConstructor.getTransference()
           
 void OJConstructor.setModifiers(int mods)
           
 void OJConstructor.setExceptionTypes(OJClass[] types)
           
 void OJConstructor.addExceptionType(OJClass type)
           
 ConstructorInvocation OJConstructor.setTransference(ConstructorInvocation invocation)
           
 StatementList OJConstructor.setBody(StatementList stmts)