Package ghidra.pyghidra.property
Class CharacterJavaProperty
java.lang.Object
ghidra.pyghidra.property.CharacterJavaProperty
- All Implemented Interfaces:
- JavaProperty<Character>
The 
JavaProperty for the primitive char type- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptionprotected final CharactercharThe method to be used as the fget value for a Python property.final voidThe method to be used as the fset value for a Python property.booleanChecks if this property has a getterbooleanChecks if this property has a setter
- 
Field Details- 
fieldThe name of the property
 
- 
- 
Method Details- 
fgetThe method to be used as the fget value for a Python property. This method will be called by the Python property __get__ function.- Parameters:
- self- the object containing the property
- Returns:
- the property's value
- Throws:
- Throwable- if any exception occurs while getting the value
 
- 
hasGetterpublic boolean hasGetter()Checks if this property has a getter- Returns:
- true if this property has a getter
 
- 
hasSetterpublic boolean hasSetter()Checks if this property has a setter- Returns:
- true if this property has a setter
 
- 
doGet- Throws:
- Throwable
 
- 
fsetDescription copied from interface:JavaPropertyThe method to be used as the fset value for a Python property. This method will be called by the Python property __set__ function.- Specified by:
- fsetin interface- JavaProperty<T>
- Parameters:
- self- the object containing the property
- value- the value to be set
- Throws:
- Throwable- if any exception occurs while setting the value
 
 
-