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.Serializable
Repository change event (used by server only).- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
name
java.lang.String
newName
java.lang.String
newParentPath
java.lang.String
parentPath
static int
REP_FOLDER_CREATED
static int
REP_FOLDER_DELETED
static int
REP_FOLDER_MOVED
static int
REP_FOLDER_RENAMED
static int
REP_ITEM_CHANGED
static int
REP_ITEM_CREATED
static int
REP_ITEM_DELETED
static int
REP_ITEM_MOVED
static int
REP_ITEM_RENAMED
static int
REP_NULL_EVENT
static int
REP_OPEN_HANDLE_COUNT
static long
serialVersionUID
int
type
-
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.String
toString()
-
-
-
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
-
-