Uses of Interface
com.thoughtworks.qdox.model.JavaConstructor
-
Packages that use JavaConstructor 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 JavaConstructor in com.thoughtworks.qdox.model
Methods in com.thoughtworks.qdox.model that return JavaConstructor Modifier and Type Method Description JavaConstructorJavaClass. getConstructor(java.util.List<JavaType> parameterTypes)JavaConstructorJavaClass. getConstructor(java.util.List<JavaType> parameterTypes, boolean varArg)Methods in com.thoughtworks.qdox.model that return types with arguments of type JavaConstructor Modifier and Type Method Description java.util.List<JavaConstructor>JavaClass. getConstructors()Equivalent ofClass.getConstructors() -
Uses of JavaConstructor in com.thoughtworks.qdox.model.impl
Classes in com.thoughtworks.qdox.model.impl that implement JavaConstructor Modifier and Type Class Description classDefaultJavaConstructorFields in com.thoughtworks.qdox.model.impl with type parameters of type JavaConstructor Modifier and Type Field Description private java.util.List<JavaConstructor>DefaultJavaClass. constructorsprivate java.util.List<JavaTypeVariable<JavaConstructor>>DefaultJavaConstructor. typeParametersMethods in com.thoughtworks.qdox.model.impl that return JavaConstructor Modifier and Type Method Description JavaConstructorDefaultJavaClass. getConstructor(java.util.List<JavaType> parameterTypes)JavaConstructorDefaultJavaClass. getConstructor(java.util.List<JavaType> parameterTypes, boolean varArgs)JavaConstructorDefaultJavaType. getConstructor(java.util.List<JavaType> parameterTypes)JavaConstructorDefaultJavaType. getConstructor(java.util.List<JavaType> parameterTypes, boolean varArg)Methods in com.thoughtworks.qdox.model.impl that return types with arguments of type JavaConstructor Modifier and Type Method Description java.util.List<JavaConstructor>DefaultJavaClass. getConstructors()Equivalent ofClass.getConstructors()java.util.List<JavaConstructor>DefaultJavaType. getConstructors()Equivalent ofClass.getConstructors()java.util.List<JavaTypeVariable<JavaConstructor>>DefaultJavaConstructor. getTypeParameters()Equivalent ofGenericDeclaration.getTypeParameters()Methods in com.thoughtworks.qdox.model.impl with parameters of type JavaConstructor Modifier and Type Method Description voidDefaultJavaClass. addConstructor(JavaConstructor constructor)Method parameters in com.thoughtworks.qdox.model.impl with type arguments of type JavaConstructor Modifier and Type Method Description voidDefaultJavaConstructor. setTypeParameters(java.util.List<JavaTypeVariable<JavaConstructor>> typeParameters) -
Uses of JavaConstructor in com.thoughtworks.qdox.writer
Methods in com.thoughtworks.qdox.writer with parameters of type JavaConstructor Modifier and Type Method Description ModelWriterModelWriter. writeConstructor(JavaConstructor cns)Write the java constructor. -
Uses of JavaConstructor in com.thoughtworks.qdox.writer.impl
Methods in com.thoughtworks.qdox.writer.impl with parameters of type JavaConstructor Modifier and Type Method Description ModelWriterDefaultModelWriter. writeConstructor(JavaConstructor constructor)Write the java constructor.
-