java.lang.Object | ||
↳ | com.pnfsoftware.jeb.core.actions.ActionData | |
↳ | com.pnfsoftware.jeb.core.actions.ActionMoveToData |
This action class holds information for the MOVE_TO
action.
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int | FLAG_NEVER_ANONYMOUS | Code specific, optionally supported by plugins. | |||||||||
int | FLAG_SKIP_CHECKS | This flag indicates to plugins that additional safety checks in place to validate the move should be skipped. |
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.pnfsoftware.jeb.core.actions.ActionData
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
ActionMoveToData() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
String |
getCurrentItemFqname()
Get the current fully-qualified name of the package to be moved.
| ||||||||||
String |
getDstContainerFqname()
Get the new fully-qualified name of the package being moved.
| ||||||||||
int |
getFlags()
Custom flags used to further specify the move operation.
| ||||||||||
void |
setCurrentItemFqname(String currentItemFqname)
Set the current fully-qualified name of the package to be moved.
| ||||||||||
void |
setDstContainerFqname(String dstContainerFqname)
Set the new fully-qualified name of the package being moved.
| ||||||||||
void |
setFlags(int flags)
Custom flags used to further specify the move operation.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.pnfsoftware.jeb.core.actions.ActionData
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
com.pnfsoftware.jeb.core.actions.IActionData
|
Code specific, optionally supported by plugins. When moving a class to a method, the client may specify this flag to indicate to the implementor that the class is not to be made anonymous.
This flag indicates to plugins that additional safety checks in place to validate the move should be skipped. I.e., if possible, the move operation should be performed even though it may not considered optimal or entirely legal to do it. Plugins specific, optionally supported.
Get the current fully-qualified name of the package to be moved. This method is used by clients.
Get the new fully-qualified name of the package being moved. This method is used by plugins.
Custom flags used to further specify the move operation. This method is used by plugins.
See FLAG_xxx
constants.
Set the current fully-qualified name of the package to be moved. This method is used by plugins.
currentItemFqname | package name |
---|
Set the new fully-qualified name of the package being moved. This method is used by clients.
dstContainerFqname | package name |
---|
Custom flags used to further specify the move operation. This method is used by clients.
See FLAG_xxx
constants.