Package gw.lang.reflect.java
Interface IJavaPropertyDescriptor
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
JavaSourcePropertyDescriptor
public interface IJavaPropertyDescriptor extends Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDisplayName()
String
getName()
IType
getPropertyType()
IJavaClassMethod
getReadMethod()
String
getShortDescription()
IJavaClassMethod
getWriteMethod()
boolean
isDeprecated()
boolean
isHidden()
boolean
isHiddenViaFeatureDescriptor()
boolean
isVisibleViaFeatureDescriptor(IScriptabilityModifier constraint)
-
-
-
Method Detail
-
getName
String getName()
-
getReadMethod
IJavaClassMethod getReadMethod()
-
getWriteMethod
IJavaClassMethod getWriteMethod()
-
getPropertyType
IType getPropertyType()
-
isHidden
boolean isHidden()
-
isVisibleViaFeatureDescriptor
boolean isVisibleViaFeatureDescriptor(IScriptabilityModifier constraint)
-
isHiddenViaFeatureDescriptor
boolean isHiddenViaFeatureDescriptor()
-
isDeprecated
boolean isDeprecated()
-
getDisplayName
String getDisplayName()
-
getShortDescription
String getShortDescription()
-
-