Uses of Interface
com.thoughtworks.qdox.model.JavaMethod
-
Packages that use JavaMethod Package Description com.thoughtworks.qdox.model Provides classes reflecting the Java model elements.com.thoughtworks.qdox.model.impl Provides the default implementation of the classes reflecting the Java model elements.com.thoughtworks.qdox.writer Provides classes to write Java model elements in any stylecom.thoughtworks.qdox.writer.impl Provides the default implementation of classes to write Java model elements in any style. -
-
Uses of JavaMethod in com.thoughtworks.qdox.model
Methods in com.thoughtworks.qdox.model that return JavaMethod Modifier and Type Method Description JavaMethod
BeanProperty. getAccessor()
This can return both theisProperty
if the property is of typeBoolean
orgetProperty
for any other type ofObject
.JavaMethod
JavaClass. getMethod(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean varArgs)
This should be the signature for getMethodBySignature.JavaMethod
JavaClass. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes)
JavaMethod
JavaClass. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses)
JavaMethod
JavaClass. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses, boolean varArg)
JavaMethod
BeanProperty. getMutator()
The setter-method of the bean.Methods in com.thoughtworks.qdox.model that return types with arguments of type JavaMethod Modifier and Type Method Description java.util.List<JavaMethod>
JavaClass. getMethods()
Equivalent ofClass.getMethods()
java.util.List<JavaMethod>
JavaClass. getMethods(boolean superclasses)
Return declared methods and optionally the inherited methodsjava.util.List<JavaMethod>
JavaClass. getMethodsBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses)
java.util.List<JavaMethod>
JavaClass. getMethodsBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses, boolean varArg)
-
Uses of JavaMethod in com.thoughtworks.qdox.model.impl
Classes in com.thoughtworks.qdox.model.impl that implement JavaMethod Modifier and Type Class Description class
DefaultJavaMethod
class
JavaMethodDelegate
This class can be used to access overridden methods while keeping a reference to the original class.Fields in com.thoughtworks.qdox.model.impl declared as JavaMethod Modifier and Type Field Description private JavaMethod
DefaultBeanProperty. accessor
private JavaMethod
DefaultBeanProperty. mutator
private JavaMethod
JavaMethodDelegate. originalMethod
Fields in com.thoughtworks.qdox.model.impl with type parameters of type JavaMethod Modifier and Type Field Description private java.util.List<JavaMethod>
DefaultJavaClass. methods
private java.util.List<JavaTypeVariable<JavaMethod>>
DefaultJavaMethod. typeParameters
Methods in com.thoughtworks.qdox.model.impl that return JavaMethod Modifier and Type Method Description JavaMethod
DefaultBeanProperty. getAccessor()
This can return both theisProperty
if the property is of typeBoolean
orgetProperty
for any other type ofObject
.JavaMethod
DefaultJavaClass. getMethod(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean varArgs)
This should be the signature for getMethodBySignature.JavaMethod
DefaultJavaType. getMethod(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean varArgs)
This should be the signature for getMethodBySignature.JavaMethod
DefaultJavaClass. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes)
JavaMethod
DefaultJavaClass. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses)
JavaMethod
DefaultJavaClass. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses, boolean varArg)
JavaMethod
DefaultJavaType. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes)
JavaMethod
DefaultJavaType. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses)
JavaMethod
DefaultJavaType. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses, boolean varArg)
JavaMethod
DefaultBeanProperty. getMutator()
The setter-method of the bean.Methods in com.thoughtworks.qdox.model.impl that return types with arguments of type JavaMethod Modifier and Type Method Description java.util.List<JavaMethod>
DefaultJavaClass. getMethods()
Equivalent ofClass.getMethods()
java.util.List<JavaMethod>
DefaultJavaClass. getMethods(boolean superclasses)
Return declared methods and optionally the inherited methodsjava.util.List<JavaMethod>
DefaultJavaType. getMethods()
Equivalent ofClass.getMethods()
java.util.List<JavaMethod>
DefaultJavaType. getMethods(boolean superclasses)
Return declared methods and optionally the inherited methodsjava.util.List<JavaMethod>
DefaultJavaClass. getMethodsBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses)
java.util.List<JavaMethod>
DefaultJavaClass. getMethodsBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses, boolean varArg)
java.util.List<JavaMethod>
DefaultJavaType. getMethodsBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses)
java.util.List<JavaMethod>
DefaultJavaType. getMethodsBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses, boolean varArg)
private static java.util.Map<java.lang.String,JavaMethod>
DefaultJavaClass. getMethodsFromSuperclassAndInterfaces(JavaClass rootClass, JavaClass callingClazz)
java.util.List<JavaTypeVariable<JavaMethod>>
DefaultJavaMethod. getTypeParameters()
Equivalent ofGenericDeclaration.getTypeParameters()
java.util.List<JavaTypeVariable<JavaMethod>>
JavaMethodDelegate. getTypeParameters()
Equivalent ofGenericDeclaration.getTypeParameters()
Methods in com.thoughtworks.qdox.model.impl with parameters of type JavaMethod Modifier and Type Method Description void
DefaultJavaClass. addMethod(JavaMethod meth)
void
DefaultBeanProperty. setAccessor(JavaMethod accessor)
void
DefaultBeanProperty. setMutator(JavaMethod mutator)
Method parameters in com.thoughtworks.qdox.model.impl with type arguments of type JavaMethod Modifier and Type Method Description void
DefaultJavaMethod. setTypeParameters(java.util.List<JavaTypeVariable<JavaMethod>> typeParameters)
Constructors in com.thoughtworks.qdox.model.impl with parameters of type JavaMethod Constructor Description JavaMethodDelegate(JavaClass callingClass, JavaMethod originalMethod)
-
Uses of JavaMethod in com.thoughtworks.qdox.writer
Methods in com.thoughtworks.qdox.writer with parameters of type JavaMethod Modifier and Type Method Description ModelWriter
ModelWriter. writeMethod(JavaMethod mth)
Write the java method A standard method writer should write: the javadoc the annotations the method signature, containing: the parameters -
Uses of JavaMethod in com.thoughtworks.qdox.writer.impl
Methods in com.thoughtworks.qdox.writer.impl with parameters of type JavaMethod Modifier and Type Method Description ModelWriter
DefaultModelWriter. writeMethod(JavaMethod method)
Write the java method A standard method writer should write: the javadoc the annotations the method signature, containing: the parameters
-