Added SystemInfo and FileSystems to query system and file system information, respectively.

This commit is contained in:
Adam Murdoch
2012-08-12 06:17:58 +10:00
parent 5f3761dd41
commit 3a58e27eeb
18 changed files with 612 additions and 327 deletions

View File

@@ -0,0 +1,9 @@
package net.rubygrapefruit.platform;
public interface SystemInfo extends NativeIntegration {
String getKernelName();
String getKernelVersion();
String getMachineArchitecture();
}