mirror of
https://github.com/ufrisk/MemProcFS.git
synced 2026-06-01 08:09:35 +08:00
Java API
This commit is contained in:
49
vmmjava/vmm/IVmmRegKey.java
Normal file
49
vmmjava/vmm/IVmmRegKey.java
Normal file
@@ -0,0 +1,49 @@
|
||||
package vmm;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Interface representing a registry key.
|
||||
* @see https://github.com/ufrisk/MemProcFS
|
||||
* @author Ulf Frisk - pcileech@frizk.net
|
||||
*/
|
||||
public interface IVmmRegKey
|
||||
{
|
||||
|
||||
/**
|
||||
* Retrieve the registry key name.
|
||||
* @return
|
||||
*/
|
||||
public String getName();
|
||||
|
||||
/**
|
||||
* Retrieve the registry key path.
|
||||
* @return
|
||||
*/
|
||||
public String getPath();
|
||||
|
||||
/**
|
||||
* Retrieve the parent key.
|
||||
* @return
|
||||
*/
|
||||
public IVmmRegKey getKeyParent();
|
||||
|
||||
/**
|
||||
* Retrieve the child keys.
|
||||
* @return
|
||||
*/
|
||||
public Map<String, IVmmRegKey> getKeyChild();
|
||||
|
||||
/**
|
||||
* Retrieve the values.
|
||||
* @return
|
||||
*/
|
||||
public Map<String, IVmmRegValue> getValues();
|
||||
|
||||
/**
|
||||
* Retrieve the last write time.
|
||||
* @return
|
||||
*/
|
||||
public long getTime();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user