Interface JavaConstructor
- 
- All Known Implementing Classes:
 JavaConstructorImpl,OXMJavaConstructorImpl,XJCJavaConstructorImpl
public interface JavaConstructor
Purpose: JavaModel representation of a java.lang.reflect.Constructor object.
Reponsibilities:- Provide information about a given constructor including such as it's parameter types, access level and modifiers.
 
- Author:
 - mmacivor
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetModifiers()java.lang.StringgetName()JavaClassgetOwningClass()JavaClass[]getParameterTypes()booleanisAbstract()booleanisFinal()booleanisPrivate()booleanisProtected()booleanisPublic()booleanisStatic()booleanisSynthetic() 
 - 
 
- 
- 
Method Detail
- 
getModifiers
int getModifiers()
 
- 
getName
java.lang.String getName()
 
- 
getOwningClass
JavaClass getOwningClass()
 
- 
getParameterTypes
JavaClass[] getParameterTypes()
 
- 
isAbstract
boolean isAbstract()
 
- 
isFinal
boolean isFinal()
 
- 
isPrivate
boolean isPrivate()
 
- 
isProtected
boolean isProtected()
 
- 
isPublic
boolean isPublic()
 
- 
isStatic
boolean isStatic()
 
- 
isSynthetic
boolean isSynthetic()
 
 - 
 
 -