Package ghidra.framework.remote
Class RepositoryChangeEvent
- java.lang.Object
- 
- ghidra.framework.remote.RepositoryChangeEvent
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class RepositoryChangeEvent extends java.lang.Object implements java.io.SerializableRepository change event (used by server only).- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description java.lang.Stringnamejava.lang.StringnewNamejava.lang.StringnewParentPathjava.lang.StringparentPathstatic intREP_FOLDER_CREATEDstatic intREP_FOLDER_DELETEDstatic intREP_FOLDER_MOVEDstatic intREP_FOLDER_RENAMEDstatic intREP_ITEM_CHANGEDstatic intREP_ITEM_CREATEDstatic intREP_ITEM_DELETEDstatic intREP_ITEM_MOVEDstatic intREP_ITEM_RENAMEDstatic intREP_NULL_EVENTstatic intREP_OPEN_HANDLE_COUNTstatic longserialVersionUIDinttype
 - 
Constructor SummaryConstructors Constructor Description RepositoryChangeEvent(int type, java.lang.String parentPath, java.lang.String name, java.lang.String newParentPath, java.lang.String newName)Constructor.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
 
- 
- 
- 
Field Detail- 
serialVersionUIDpublic static final long serialVersionUID - See Also:
- Constant Field Values
 
 - 
REP_NULL_EVENTpublic static final int REP_NULL_EVENT - See Also:
- Constant Field Values
 
 - 
REP_FOLDER_CREATEDpublic static final int REP_FOLDER_CREATED - See Also:
- Constant Field Values
 
 - 
REP_ITEM_CREATEDpublic static final int REP_ITEM_CREATED - See Also:
- Constant Field Values
 
 - 
REP_FOLDER_DELETEDpublic static final int REP_FOLDER_DELETED - See Also:
- Constant Field Values
 
 - 
REP_FOLDER_MOVEDpublic static final int REP_FOLDER_MOVED - See Also:
- Constant Field Values
 
 - 
REP_FOLDER_RENAMEDpublic static final int REP_FOLDER_RENAMED - See Also:
- Constant Field Values
 
 - 
REP_ITEM_DELETEDpublic static final int REP_ITEM_DELETED - See Also:
- Constant Field Values
 
 - 
REP_ITEM_RENAMEDpublic static final int REP_ITEM_RENAMED - See Also:
- Constant Field Values
 
 - 
REP_ITEM_MOVEDpublic static final int REP_ITEM_MOVED - See Also:
- Constant Field Values
 
 - 
REP_ITEM_CHANGEDpublic static final int REP_ITEM_CHANGED - See Also:
- Constant Field Values
 
 - 
REP_OPEN_HANDLE_COUNTpublic static final int REP_OPEN_HANDLE_COUNT - See Also:
- Constant Field Values
 
 - 
typepublic final int type 
 - 
parentPathpublic final java.lang.String parentPath 
 - 
namepublic final java.lang.String name 
 - 
newParentPathpublic final java.lang.String newParentPath 
 - 
newNamepublic final java.lang.String newName 
 
- 
 - 
Constructor Detail- 
RepositoryChangeEventpublic RepositoryChangeEvent(int type, java.lang.String parentPath, java.lang.String name, java.lang.String newParentPath, java.lang.String newName)Constructor. Parameters not applicable to the specified type may be null.- Parameters:
- type- event type
- parentPath- parent folder path for repository item or folder
- name- repository item or folder name
- newParentPath- new parent folder path for repository item or folder
- newName- new repository item or folder name
 
 
- 
 
-