Contents | Package | Class | Tree | Deprecated | Index | Help
PREV | NEXT SHOW LISTS | HIDE LISTS

Interface cornell.slk.jkernel.core.SystemRuntimeDangerousInterface

Source code
Implementing Classes:
SystemRuntimeDangerous

public interface SystemRuntimeDangerousInterface

Method Summary
java.lang.Process  exec(java.lang.String command)
 
java.lang.Process  exec(java.lang.String command, java.lang.String[] envp)
 
java.lang.Process  exec(java.lang.String[] cmdarray)
 
java.lang.Process  exec(java.lang.String[] cmdarray, java.lang.String[] envp)
 
void  exit(int status)
 
long  freeMemory()
 
void  gc()
 
java.lang.String  getenv(java.lang.String name)
 
java.util.Properties  getProperties()
 
java.lang.String  getProperty(java.lang.String key)
 
java.lang.String  getProperty(java.lang.String key, java.lang.String def)
 
void  load(java.lang.String filename)
 
void  loadLibrary(java.lang.String libname)
 
void  runFinalization()
 
void  runFinalizersOnExit(boolean value)
 
void  setProperties(java.util.Properties props)
 
long  totalMemory()
 
void  traceInstructions(boolean on)
 
void  traceMethodCalls(boolean on)
 
 

Method Detail

load

public void load(java.lang.String filename) throws java.lang.SecurityException, java.lang.UnsatisfiedLinkError

loadLibrary

public void loadLibrary(java.lang.String libname) throws java.lang.SecurityException, java.lang.UnsatisfiedLinkError

getProperties

public java.util.Properties getProperties() throws java.lang.SecurityException

setProperties

public void setProperties(java.util.Properties props) throws java.lang.SecurityException

getProperty

public java.lang.String getProperty(java.lang.String key) throws java.lang.SecurityException

getProperty

public java.lang.String getProperty(java.lang.String key,
                          java.lang.String def) throws java.lang.SecurityException

getenv

public java.lang.String getenv(java.lang.String name)

exit

public void exit(int status) throws java.lang.SecurityException

gc

public void gc()

runFinalization

public void runFinalization()

runFinalizersOnExit

public void runFinalizersOnExit(boolean value)

exec

public java.lang.Process exec(java.lang.String command) throws java.io.IOException, java.lang.SecurityException

exec

public java.lang.Process exec(java.lang.String command,
                    java.lang.String[] envp) throws java.io.IOException, java.lang.SecurityException

exec

public java.lang.Process exec(java.lang.String[] cmdarray) throws java.io.IOException, java.lang.SecurityException

exec

public java.lang.Process exec(java.lang.String[] cmdarray,
                    java.lang.String[] envp) throws java.io.IOException, java.lang.SecurityException

freeMemory

public long freeMemory()

totalMemory

public long totalMemory()

traceInstructions

public void traceInstructions(boolean on)

traceMethodCalls

public void traceMethodCalls(boolean on)

Contents | Package | Class | Tree | Deprecated | Index | Help
PREV | NEXT SHOW LISTS | HIDE LISTS