[21:21] static
(extern: com.aussom.stdlib.ASys) extends: object
This static class provides a variety of system functions.
getSysInfo ()
Gets all of the system information in a single string.
A
string with all the system info.getAssembly ()
Gets the name and path to the Aussom assembly.
A
string with the result.getAssemblyPath ()
Gets the path of the Aussom assembly.
A
string with the result.getCurrentPath ()
Gets the current path.
A
string with the result.getHomePath ()
Get the home path.
A
string with the result.getUserName ()
Gets the current user name.
A
string with the result.getOsArch ()
Gets the operating system arch.
A
string with the result.getOsName ()
Gets the operating system name.
A
string with the result.getOsVersion ()
Gets the operating system version.
A
string with the result.getJavaVersion ()
Gets the Java version.
A
string with the result.getJavaVendor ()
Gets the Java vendor.
A
string with the result.getJavaVendorUrl ()
Get the Java vendor URL.
A
string with the result.getJavaClassPath ()
Gets the Java class path.
A
string with the result.getFileSeparator ()
Gets the system file separator.
A
string with the result.getLineSeparator ()
Gets the system line separator.
A
string with the result.getAussomVersion ()
Gets the Aussom version.
A
string with the result.getJavaHome ()
Gets the Java home value.
A
string with the result.getMills ()
Gets the current time in milliseconds since epoch.
An
int with the number of milliseconds.sleep (int mills
)
Causes the current thread to sleep the number of seconds provided.
mills
is an int with the number of milliseconds to wait.this
object