MethodSource<O> |
MethodHolderSource.addMethod() |
|
MethodSource<O> |
MethodHolderSource.addMethod(java.lang.reflect.Method method) |
|
MethodSource<O> |
MethodHolderSource.addMethod(java.lang.String method) |
|
MethodSource<O> |
MethodHolderSource.addMethod(Method<?,?> method) |
|
MethodSource<O> |
MethodSource.addThrows(java.lang.Class<? extends java.lang.Exception> type) |
Add a thrown Exception to this method's signature.
|
MethodSource<O> |
MethodSource.addThrows(java.lang.String type) |
Add a thrown Exception to this method's signature.
|
MethodSource<O> |
PropertySource.createAccessor() |
Create the accessor method.
|
MethodSource<O> |
PropertySource.createMutator() |
Create the mutator method.
|
MethodSource<O> |
PropertySource.getAccessor() |
Override.
|
MethodSource<O> |
MethodHolderSource.getMethod(java.lang.String name) |
Return the MethodSource with the given name and zero parameters; otherwise return null.
|
MethodSource<O> |
MethodHolderSource.getMethod(java.lang.String name,
java.lang.Class<?>... paramTypes) |
Return the MethodSource with the given name and signature types; otherwise return null.
|
MethodSource<O> |
MethodHolderSource.getMethod(java.lang.String name,
java.lang.String... paramTypes) |
Return the MethodSource with the given name and signature types; otherwise return null.
|
MethodSource<O> |
PropertySource.getMutator() |
Override.
|
MethodSource<O> |
MethodSource.removeParameter(java.lang.Class<?> type,
java.lang.String name) |
Remove a parameter with the specified Class type and name from this method
|
MethodSource<O> |
MethodSource.removeParameter(java.lang.String type,
java.lang.String name) |
Remove a parameter with the specified type and name from this method
|
MethodSource<O> |
MethodSource.removeParameter(JavaType<?> type,
java.lang.String name) |
Remove a parameter with the specified JavaType type and name to this method
|
MethodSource<O> |
MethodSource.removeParameter(ParameterSource<O> parameter) |
Remove a parameter from this method
|
MethodSource<O> |
MethodSource.removeThrows(java.lang.Class<? extends java.lang.Exception> type) |
Remove a thrown Exception to this method's signature.
|
MethodSource<O> |
MethodSource.removeThrows(java.lang.String type) |
Remove a thrown Exception to this method's signature.
|
MethodSource<O> |
MethodSource.setBody(java.lang.String body) |
Set the inner body of this Method
|
MethodSource<O> |
MethodSource.setConstructor(boolean constructor) |
Toggle this method as a constructor.
|
MethodSource<O> |
MethodSource.setDefault(boolean value) |
Sets the default keyword in this method
|
MethodSource<O> |
MethodSource.setNative(boolean value) |
Sets this method to be native
IMPORTANT: Setting it to true will remove the method body.
|
MethodSource<O> |
MethodSource.setParameters(java.lang.String string) |
|
MethodSource<O> |
MethodSource.setReturnType(java.lang.Class<?> type) |
Set this Method to return the given type.
|
MethodSource<O> |
MethodSource.setReturnType(java.lang.String type) |
Set this Method to return the given type.
|
MethodSource<O> |
MethodSource.setReturnType(JavaType<?> type) |
Set this Method to return the given type.
|
MethodSource<O> |
MethodSource.setReturnType(Type<?> type) |
Set this Method to return the given type.
|
MethodSource<O> |
MethodSource.setReturnTypeVoid() |
Set this Method to return 'void'
|
MethodSource<O> |
MethodSource.setSynchronized(boolean value) |
Sets the synchronized keyword in this element.
|