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 JavaParameterJavaExecutable. 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 classDefaultJavaParameterMethods in com.thoughtworks.qdox.model.impl that return JavaParameter Modifier and Type Method Description JavaParameterDefaultJavaExecutable. getParameterByName(java.lang.String name)JavaParameterJavaMethodDelegate. 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 voidDefaultJavaExecutable. 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 ModelWriterModelWriter. 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 ModelWriterDefaultModelWriter. writeParameter(JavaParameter parameter)Write the java parameter A standard parameter writer should write: the javadoc the annotations the parameter signature
-