Class ExtendedJavaParameter
- java.lang.Object
-
- com.thoughtworks.qdox.model.impl.AbstractJavaModel
-
- com.thoughtworks.qdox.model.impl.AbstractBaseJavaEntity
-
- com.thoughtworks.qdox.model.impl.DefaultJavaParameter
-
- com.devonfw.cobigen.javaplugin.merger.libextension.ExtendedJavaParameter
-
- All Implemented Interfaces:
com.thoughtworks.qdox.model.JavaAnnotatedElement,com.thoughtworks.qdox.model.JavaModel,com.thoughtworks.qdox.model.JavaParameter,com.thoughtworks.qdox.model.JavaType,Serializable
public class ExtendedJavaParameter extends com.thoughtworks.qdox.model.impl.DefaultJavaParameterExtension of theJavaParameterimplementation in order to support modifiers- Author:
- mbrunnli (10.04.2014)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExtendedJavaParameter(com.thoughtworks.qdox.model.JavaClass type, String name, Set<String> modifiers, boolean varArgs)Creates a newExtendedJavaParameterfor the given properties
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getModifiers()Returns all modifiers of the parameter-
Methods inherited from class com.thoughtworks.qdox.model.impl.DefaultJavaParameter
equals, getBinaryName, getCanonicalName, getCodeBlock, getDeclaringClass, getExecutable, getFullyQualifiedName, getGenericCanonicalName, getGenericFullyQualifiedName, getGenericValue, getJavaClass, getName, getResolvedFullyQualifiedName, getResolvedGenericFullyQualifiedName, getResolvedGenericValue, getResolvedValue, getType, getValue, hashCode, isVarArgs, setExecutable, setName, toGenericString, toString
-
Methods inherited from class com.thoughtworks.qdox.model.impl.AbstractBaseJavaEntity
getAnnotations, getComment, getNamedParameter, getSource, getTagByName, getTags, getTagsByName, setAnnotations, setComment, setSource, setTags
-
Methods inherited from class com.thoughtworks.qdox.model.impl.AbstractJavaModel
getLineNumber, getModelWriter, setLineNumber, setModelWriterFactory
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
Constructor Detail
-
ExtendedJavaParameter
public ExtendedJavaParameter(com.thoughtworks.qdox.model.JavaClass type, String name, Set<String> modifiers, boolean varArgs)Creates a newExtendedJavaParameterfor the given properties- Parameters:
type-JavaClassof the parametername- of the parametermodifiers- list of modifiers of the parametervarArgs- of the parameter (??? see QDox)
-
-