Class WindowsRegistryEntry
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.actions.WindowsRegistryEntry
-
- All Implemented Interfaces:
Referenceable
public final class WindowsRegistryEntry extends ProjectObject
Defines a Windows registry entry.
-
-
Constructor Summary
Constructors Constructor Description WindowsRegistryEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getData()
The data (value) that will be stored.MultipleWinRegistryType
getDataType()
The type of data stored in this register.java.lang.String
getRegistryKey()
The registry key where to look for the value name to edit.java.lang.String
getValueName()
The value name that will have the data changed.void
setData(java.lang.String data)
The data (value) that will be stored.void
setDataType(MultipleWinRegistryType type)
The type of data stored in this register.void
setRegistryKey(java.lang.String key)
The registry key where to look for the value name to edit.void
setValueName(java.lang.String valueName)
The value name that will have the data changed.-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
getRegistryKey
public java.lang.String getRegistryKey()
The registry key where to look for the value name to edit.
-
setRegistryKey
public void setRegistryKey(java.lang.String key)
The registry key where to look for the value name to edit.
-
getValueName
public java.lang.String getValueName()
The value name that will have the data changed.
-
setValueName
public void setValueName(java.lang.String valueName)
The value name that will have the data changed.
-
getDataType
public MultipleWinRegistryType getDataType()
The type of data stored in this register.
-
setDataType
public void setDataType(MultipleWinRegistryType type)
The type of data stored in this register.
-
getData
public java.lang.String getData()
The data (value) that will be stored.
-
setData
public void setData(java.lang.String data)
The data (value) that will be stored.
-
-