| java.lang.Object | ||
| ↳ | com.pnfsoftware.jeb.core.actions.ActionData | |
| ↳ | com.pnfsoftware.jeb.core.actions.ActionRenameData | |
This action class holds information for the RENAME action.
Unit plugins may support rename actions on items to allow clients to rename those items.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| ActionRenameData() | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| String |
getCurrentName()
Get the current name.
| ||||||||||
| String |
getNewName()
Get the new name.
| ||||||||||
| void |
setCurrentName(String name)
Set the current name.
| ||||||||||
| void |
setNewName(String name)
Set the new name.
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.pnfsoftware.jeb.core.actions.ActionData
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
com.pnfsoftware.jeb.core.actions.IActionData
| |||||||||||
Get the current name. This method is used by clients.
Get the new name. This method is used by plugins.
Set the current name. This method is used by plugins.
| name | current name |
|---|
Set the new name. This method is used by clients.
| name | new name |
|---|