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 JavaConstructor
JavaClass. getConstructor(java.util.List<JavaType> parameterTypes)
JavaConstructor
JavaClass. 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 class
DefaultJavaConstructor
Fields in com.thoughtworks.qdox.model.impl with type parameters of type JavaConstructor Modifier and Type Field Description private java.util.List<JavaConstructor>
DefaultJavaClass. constructors
private java.util.List<JavaTypeVariable<JavaConstructor>>
DefaultJavaConstructor. typeParameters
Methods in com.thoughtworks.qdox.model.impl that return JavaConstructor Modifier and Type Method Description JavaConstructor
DefaultJavaClass. getConstructor(java.util.List<JavaType> parameterTypes)
JavaConstructor
DefaultJavaClass. getConstructor(java.util.List<JavaType> parameterTypes, boolean varArgs)
JavaConstructor
DefaultJavaType. getConstructor(java.util.List<JavaType> parameterTypes)
JavaConstructor
DefaultJavaType. 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 void
DefaultJavaClass. addConstructor(JavaConstructor constructor)
Method parameters in com.thoughtworks.qdox.model.impl with type arguments of type JavaConstructor Modifier and Type Method Description void
DefaultJavaConstructor. 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 ModelWriter
ModelWriter. 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 ModelWriter
DefaultModelWriter. writeConstructor(JavaConstructor constructor)
Write the java constructor.
-