Package ghidra.util.prop
Interface PropertyVisitor
- 
- All Known Implementing Classes:
 ProgramMerge
public interface PropertyVisitorPropertyVisitor is an interface for use with user defined properties when you know the name of the property but not its type. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvisit()Handle the case of a void property type.voidvisit(int value)Handle the case of an int property type.voidvisit(Saveable value)Handle the case of a Saveable property typevoidvisit(java.lang.Object value)Handle the case of an Object property type.voidvisit(java.lang.String value)Handle the case of a String property type. 
 - 
 
- 
- 
Method Detail
- 
visit
void visit()
Handle the case of a void property type. 
- 
visit
void visit(java.lang.String value)
Handle the case of a String property type. 
- 
visit
void visit(java.lang.Object value)
Handle the case of an Object property type. 
- 
visit
void visit(Saveable value)
Handle the case of a Saveable property type 
- 
visit
void visit(int value)
Handle the case of an int property type. 
 - 
 
 -