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 JavaMethodBeanProperty. getAccessor()This can return both theisPropertyif the property is of typeBooleanorgetPropertyfor any other type ofObject.JavaMethodJavaClass. getMethod(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean varArgs)This should be the signature for getMethodBySignature.JavaMethodJavaClass. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes)JavaMethodJavaClass. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses)JavaMethodJavaClass. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses, boolean varArg)JavaMethodBeanProperty. 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 classDefaultJavaMethodclassJavaMethodDelegateThis 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 JavaMethodDefaultBeanProperty. accessorprivate JavaMethodDefaultBeanProperty. mutatorprivate JavaMethodJavaMethodDelegate. originalMethodFields in com.thoughtworks.qdox.model.impl with type parameters of type JavaMethod Modifier and Type Field Description private java.util.List<JavaMethod>DefaultJavaClass. methodsprivate java.util.List<JavaTypeVariable<JavaMethod>>DefaultJavaMethod. typeParametersMethods in com.thoughtworks.qdox.model.impl that return JavaMethod Modifier and Type Method Description JavaMethodDefaultBeanProperty. getAccessor()This can return both theisPropertyif the property is of typeBooleanorgetPropertyfor any other type ofObject.JavaMethodDefaultJavaClass. getMethod(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean varArgs)This should be the signature for getMethodBySignature.JavaMethodDefaultJavaType. getMethod(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean varArgs)This should be the signature for getMethodBySignature.JavaMethodDefaultJavaClass. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes)JavaMethodDefaultJavaClass. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses)JavaMethodDefaultJavaClass. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses, boolean varArg)JavaMethodDefaultJavaType. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes)JavaMethodDefaultJavaType. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses)JavaMethodDefaultJavaType. getMethodBySignature(java.lang.String name, java.util.List<JavaType> parameterTypes, boolean superclasses, boolean varArg)JavaMethodDefaultBeanProperty. 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 voidDefaultJavaClass. addMethod(JavaMethod meth)voidDefaultBeanProperty. setAccessor(JavaMethod accessor)voidDefaultBeanProperty. setMutator(JavaMethod mutator)Method parameters in com.thoughtworks.qdox.model.impl with type arguments of type JavaMethod Modifier and Type Method Description voidDefaultJavaMethod. 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 ModelWriterModelWriter. 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 ModelWriterDefaultModelWriter. writeMethod(JavaMethod method)Write the java method A standard method writer should write: the javadoc the annotations the method signature, containing: the parameters
-