10 lines
194 B
Java
10 lines
194 B
Java
package net.rubygrapefruit.platform;
|
|
|
|
public interface SystemInfo extends NativeIntegration {
|
|
String getKernelName();
|
|
|
|
String getKernelVersion();
|
|
|
|
String getMachineArchitecture();
|
|
}
|