Package com.pnfsoftware.jeb.core.actions
Class ActionAutoRenameAllData
java.lang.Object
com.pnfsoftware.jeb.core.actions.ActionData
com.pnfsoftware.jeb.core.actions.ActionAutoRenameAllData
- All Implemented Interfaces:
IActionData
This action class holds information for the
Actions.AUTO_RENAME_ALL action.
Unit plugins may support this action.
-
Field Summary
Fields inherited from class com.pnfsoftware.jeb.core.actions.ActionData
ERRCODE_UNKNOWN -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet the default rename filter proposed by the plugin.Get the default rename policy proposed by the plugin.Get the default rename targets proposed by the plugin.Get the rename filter selected by the client.intGet the rename policy selected by the client.intGet the number of identifiers renamed by the plugin.intGet the rename targets selected by the client.voidsetDefaultFilter(String defaultFilter) Set the default rename filter proposed by the plugin.voidsetDefaultPolicy(int defaultPolicy) Set the default rename policy proposed by the plugin.voidsetDefaultTargets(int defaultTargets) Set the default rename targets proposed by the plugin.voidSet the rename filter selected by the client.voidsetPolicy(int policy) Set the rename policy selected by the client.voidsetRenamedCount(int renamedCount) Set the number of identifiers renamed by the plugin.voidsetTargets(int targets) Set the rename targets selected by the client.Methods inherited from class com.pnfsoftware.jeb.core.actions.ActionData
canReuseObject, getDescription, getExecutionErrorCode, getExecutionErrorMessage, getValue, isNoInfoRequest, reset, setDescription, setExecutionError, setExecutionErrorCode, setExecutionErrorMessage, setValue
-
Constructor Details
-
ActionAutoRenameAllData
public ActionAutoRenameAllData()
-
-
Method Details
-
setDefaultTargets
public void setDefaultTargets(int defaultTargets) Set the default rename targets proposed by the plugin.- Parameters:
defaultTargets- default target mask
-
getDefaultTargets
Get the default rename targets proposed by the plugin.- Returns:
- the default target mask, or
nullif none was provided
-
setTargets
public void setTargets(int targets) Set the rename targets selected by the client.- Parameters:
targets- target mask
-
getTargets
public int getTargets()Get the rename targets selected by the client.- Returns:
- the target mask
-
setDefaultPolicy
public void setDefaultPolicy(int defaultPolicy) Set the default rename policy proposed by the plugin.- Parameters:
defaultPolicy- default rename policy
-
getDefaultPolicy
Get the default rename policy proposed by the plugin.- Returns:
- the default policy, or
nullif none was provided
-
setPolicy
public void setPolicy(int policy) Set the rename policy selected by the client.- Parameters:
policy- rename policy
-
getPolicy
public int getPolicy()Get the rename policy selected by the client.- Returns:
- the rename policy
-
setDefaultFilter
Set the default rename filter proposed by the plugin.- Parameters:
defaultFilter- default filter expression
-
getDefaultFilter
Get the default rename filter proposed by the plugin.- Returns:
- the default filter expression, or
nullif none was provided
-
setFilter
Set the rename filter selected by the client.- Parameters:
filter- filter expression
-
getFilter
Get the rename filter selected by the client.- Returns:
- the filter expression
-
setRenamedCount
public void setRenamedCount(int renamedCount) Set the number of identifiers renamed by the plugin.- Parameters:
renamedCount- renamed identifier count
-
getRenamedCount
public int getRenamedCount()Get the number of identifiers renamed by the plugin.- Returns:
- the renamed identifier count
-