Uses of Interface
com.thoughtworks.qdox.model.JavaParameter
-
Packages that use JavaParameter 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 JavaParameter in com.thoughtworks.qdox.model
Methods in com.thoughtworks.qdox.model that return JavaParameter Modifier and Type Method Description JavaParameter
JavaExecutable. getParameterByName(java.lang.String name)
Methods in com.thoughtworks.qdox.model that return types with arguments of type JavaParameter Modifier and Type Method Description java.util.List<JavaParameter>
JavaExecutable. getParameters()
Equivalent ofExecutable.getParameterTypes()
, where a JavaParameter also contains the original name if available. -
Uses of JavaParameter in com.thoughtworks.qdox.model.impl
Classes in com.thoughtworks.qdox.model.impl that implement JavaParameter Modifier and Type Class Description class
DefaultJavaParameter
Fields in com.thoughtworks.qdox.model.impl with type parameters of type JavaParameter Modifier and Type Field Description private java.util.List<JavaParameter>
DefaultJavaExecutable. parameters
Methods in com.thoughtworks.qdox.model.impl that return JavaParameter Modifier and Type Method Description JavaParameter
DefaultJavaExecutable. getParameterByName(java.lang.String name)
JavaParameter
JavaMethodDelegate. getParameterByName(java.lang.String name)
Methods in com.thoughtworks.qdox.model.impl that return types with arguments of type JavaParameter Modifier and Type Method Description java.util.List<JavaParameter>
DefaultJavaExecutable. getParameters()
Equivalent ofExecutable.getParameterTypes()
, where a JavaParameter also contains the original name if available.java.util.List<JavaParameter>
JavaMethodDelegate. getParameters()
Equivalent ofExecutable.getParameterTypes()
, where a JavaParameter also contains the original name if available.Method parameters in com.thoughtworks.qdox.model.impl with type arguments of type JavaParameter Modifier and Type Method Description void
DefaultJavaExecutable. setParameters(java.util.List<JavaParameter> javaParameters)
-
Uses of JavaParameter in com.thoughtworks.qdox.writer
Methods in com.thoughtworks.qdox.writer with parameters of type JavaParameter Modifier and Type Method Description ModelWriter
ModelWriter. writeParameter(JavaParameter prm)
Write the java parameter A standard parameter writer should write: the javadoc the annotations the parameter signature -
Uses of JavaParameter in com.thoughtworks.qdox.writer.impl
Methods in com.thoughtworks.qdox.writer.impl with parameters of type JavaParameter Modifier and Type Method Description ModelWriter
DefaultModelWriter. writeParameter(JavaParameter parameter)
Write the java parameter A standard parameter writer should write: the javadoc the annotations the parameter signature
-