Uses of Class
org.exolab.javasource.JDocDescriptor
Packages that use JDocDescriptor
Package
Description
This package contains classes that represent Java Source objects for Castor XML
code generator.
-
Uses of JDocDescriptor in org.exolab.javasource
Methods in org.exolab.javasource that return JDocDescriptorModifier and TypeMethodDescriptionstatic JDocDescriptorJDocDescriptor.createAuthorDesc()Creates a new, empty @author JavaDoc descriptor.static JDocDescriptorJDocDescriptor.createAuthorDesc(String name) Creates a new @author JavaDoc descriptor with the provided author name string.static JDocDescriptorJDocDescriptor.createExceptionDesc()Creates a new, empty @exception JavaDoc descriptor.static JDocDescriptorJDocDescriptor.createExceptionDesc(String name, String desc) Creates a new @exception JavaDoc descriptor with a given exception name and a description of when the exception is thrown.static JDocDescriptorJDocDescriptor.createParamDesc()Creates a new, empty @param JavaDoc descriptor.static JDocDescriptorJDocDescriptor.createParamDesc(String name, String desc) Creates a new @param JavaDoc descriptor with the given parameter name and description.static JDocDescriptorJDocDescriptor.createReferenceDesc()Creates a new, empty @reference JavaDoc descriptor.static JDocDescriptorJDocDescriptor.createReferenceDesc(String name) Creates a new @reference JavaDoc descriptor with the provided reference string.static JDocDescriptorJDocDescriptor.createReturnDesc()Creates a new, empty @return JavaDoc descriptor.static JDocDescriptorJDocDescriptor.createReturnDesc(String desc) Creates a new @return JavaDoc descriptor with the provided description of what is returned.static JDocDescriptorJDocDescriptor.createVersionDesc()Creates a new, empty @version JavaDoc descriptor.static JDocDescriptorJDocDescriptor.createVersionDesc(String version) Creates a new @version JavaDoc descriptor with the provided version string.JDocComment.getParamDescriptor(String name) Returns the Parameter Descriptor associated with the given name.Methods in org.exolab.javasource that return types with arguments of type JDocDescriptorModifier and TypeMethodDescriptionJDocComment.getDescriptors()Returns an Enumeration of the parameters of this JDocComment.Methods in org.exolab.javasource with parameters of type JDocDescriptorModifier and TypeMethodDescriptionvoidJDocComment.addDescriptor(JDocDescriptor jdesc) Adds the given JDocDescriptor to this JDocComment.protected shortJDocDescriptor.compareTo(JDocDescriptor jdd) Compares the type of this JDocDescriptor with the given descriptor.Constructors in org.exolab.javasource with parameters of type JDocDescriptorModifierConstructorDescriptionJDocComment(JDocDescriptor jdesc) Creates a new JavaDoc Comment and initializie it with given JDocDescriptor.