Package | Description |
---|---|
org.jboss.reflect.plugins.javassist | |
org.jboss.reflect.spi |
Extended Reflection API.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractJavassistBody
A AbstractJavassistBody.
|
class |
DefaultJavassistBody
A DefaultJavassistBody.
|
class |
InsertAfterJavassistBody
A InsertAfterJavassistBody.
|
class |
InsertBeforeJavassistBody
A InsertBeforeJavassistBody.
|
Modifier and Type | Method and Description |
---|---|
MutableConstructorInfo |
JavassistTypeInfo.createMutableConstructor(Body body) |
MutableConstructorInfo |
JavassistTypeInfo.createMutableConstructor(int modifiers,
Body body,
ClassInfo[] parameters,
ClassInfo[] exceptions) |
MutableConstructorInfo |
JavassistTypeInfo.createMutableConstructor(int modifiers,
Body body,
String[] parameters,
String[] exceptions) |
MutableMethodInfo |
JavassistTypeInfo.createMutableMethod(Body body) |
MutableMethodInfo |
JavassistTypeInfo.createMutableMethod(int modifiers,
ClassInfo returnType,
String methodName,
Body body,
ClassInfo[] parameters,
ClassInfo[] exceptions) |
MutableMethodInfo |
JavassistTypeInfo.createMutableMethod(int modifiers,
String returnType,
String methodName,
Body body,
String[] parameters,
String[] exceptions) |
void |
JavassistAnnotatedParameterInfo.setBody(Body body) |
Modifier and Type | Method and Description |
---|---|
MutableConstructorInfo |
MutableClassInfo.createMutableConstructor(Body body)
Compiles the code included in the Body parameter and returns a MutableConstructorInfo
representation of it.
|
MutableConstructorInfo |
MutableClassInfo.createMutableConstructor(int modifiers,
Body body,
ClassInfo[] parameters,
ClassInfo[] exceptions)
Creates a constructor with the parameters given.
|
MutableConstructorInfo |
MutableClassInfo.createMutableConstructor(int modifiers,
Body body,
String[] parameters,
String[] exceptions)
Creates a constructor with the parameters given.
|
MutableMethodInfo |
MutableClassInfo.createMutableMethod(Body body)
Compiles the code included in Body and returns a MutableMethodInfo representation of it.
|
MutableMethodInfo |
MutableClassInfo.createMutableMethod(int modifiers,
ClassInfo returnType,
String name,
Body body,
ClassInfo[] parameters,
ClassInfo[] exceptions)
Compiles a method with the signature and body given by the parameters.
|
MutableMethodInfo |
MutableClassInfo.createMutableMethod(int modifiers,
String returnType,
String name,
Body body,
String[] parameters,
String[] exceptions)
Compiles a method with the signature and body given by the parameters.
|
void |
MutableConstructorInfo.setBody(Body body)
The source text of the method body
|
void |
MutableMethodInfo.setBody(Body body)
The source text of the method body
|
Copyright © 2013 JBoss, a division of Red Hat, Inc.. All Rights Reserved.