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 |
JavaExecutable.getParameterByName(String name) |
Modifier and Type | Method and Description |
---|---|
List<JavaParameter> |
JavaExecutable.getParameters()
Equivalent of
Executable.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 |
JavaMethodDelegate.getParameterByName(String name) |
JavaParameter |
DefaultJavaExecutable.getParameterByName(String name) |
Modifier and Type | Method and Description |
---|---|
List<JavaParameter> |
JavaMethodDelegate.getParameters()
Equivalent of
Executable.getParameterTypes() , where a JavaParameter also contains the original name if available. |
List<JavaParameter> |
DefaultJavaExecutable.getParameters()
Equivalent of
Executable.getParameterTypes() , where a JavaParameter also contains the original name if available. |
Modifier and Type | Method and Description |
---|---|
void |
DefaultJavaExecutable.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–2024. All rights reserved.