1 2 3 4 5 6 7 8 9 10
public class BSDKernel implements IKernel { /** * Load the kernel on top of the system image. */ @Override public void loadKernel() { System.out.println("Loading: " + this.getClass().getSimpleName()); } }