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 Summary
Fields 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 Summary
Constructors Constructor Description RepositoryChangeEvent(int type, java.lang.String parentPath, java.lang.String name, java.lang.String newParentPath, java.lang.String newName)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
REP_NULL_EVENT
public static final int REP_NULL_EVENT
- See Also:
- Constant Field Values
-
REP_FOLDER_CREATED
public static final int REP_FOLDER_CREATED
- See Also:
- Constant Field Values
-
REP_ITEM_CREATED
public static final int REP_ITEM_CREATED
- See Also:
- Constant Field Values
-
REP_FOLDER_DELETED
public static final int REP_FOLDER_DELETED
- See Also:
- Constant Field Values
-
REP_FOLDER_MOVED
public static final int REP_FOLDER_MOVED
- See Also:
- Constant Field Values
-
REP_FOLDER_RENAMED
public static final int REP_FOLDER_RENAMED
- See Also:
- Constant Field Values
-
REP_ITEM_DELETED
public static final int REP_ITEM_DELETED
- See Also:
- Constant Field Values
-
REP_ITEM_RENAMED
public static final int REP_ITEM_RENAMED
- See Also:
- Constant Field Values
-
REP_ITEM_MOVED
public static final int REP_ITEM_MOVED
- See Also:
- Constant Field Values
-
REP_ITEM_CHANGED
public static final int REP_ITEM_CHANGED
- See Also:
- Constant Field Values
-
REP_OPEN_HANDLE_COUNT
public static final int REP_OPEN_HANDLE_COUNT
- See Also:
- Constant Field Values
-
type
public final int type
-
parentPath
public final java.lang.String parentPath
-
name
public final java.lang.String name
-
newParentPath
public final java.lang.String newParentPath
-
newName
public final java.lang.String newName
-
-
Constructor Detail
-
RepositoryChangeEvent
public 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 typeparentPath- parent folder path for repository item or foldername- repository item or folder namenewParentPath- new parent folder path for repository item or foldernewName- new repository item or folder name
-
-