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 style
|
com.thoughtworks.qdox.writer.impl |
Provides the default implementation of classes to write Java model elements in any style.
|
Modifier and Type | Method and Description |
---|---|
JavaParameter |
JavaMethod.getParameterByName(String name) |
JavaParameter |
JavaConstructor.getParameterByName(String name) |
Modifier and Type | Method and Description |
---|---|
List<JavaParameter> |
JavaMethod.getParameters() |
List<JavaParameter> |
JavaConstructor.getParameters()
Equivalent of
Constructor.getParameterTypes() , where a JavaParameter also contains the original name if available. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultJavaParameter |
Modifier and Type | Method and Description |
---|---|
JavaParameter |
AbstractBaseMethod.getParameterByName(String name) |
JavaParameter |
JavaMethodDelegate.getParameterByName(String name) |
Modifier and Type | Method and Description |
---|---|
List<JavaParameter> |
AbstractBaseMethod.getParameters() |
List<JavaParameter> |
JavaMethodDelegate.getParameters() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractBaseMethod.setParameters(List<JavaParameter> javaParameters) |
Modifier and Type | Method and Description |
---|---|
ModelWriter |
ModelWriter.writeParameter(JavaParameter prm)
Write the java parameter
A standard parameter writer should write:
the javadoc
the annotations
the parameter signature
|
Modifier and Type | Method and Description |
---|---|
ModelWriter |
DefaultModelWriter.writeParameter(JavaParameter parameter)
Write the java parameter
A standard parameter writer should write:
the javadoc
the annotations
the parameter signature
|
Copyright © 2002–2016. All rights reserved.