You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importorg.jutil.Util;
...
Util.notImplementedException();
// throws a subclass of RuntimeException and text to identify unimplemented// code parts
...
Util.sleep(100, false);
// convenience method: sleeps 100ms or until interruption, see // implementation or Javadoc for details
...
Stringprompt = Util.prompt("go further: "); // console IOSystem.out.println("Prompted input: '" + prompt + "'");
MoredetailedexamplescanbefoundinthepackageREADMEortheJavadocAPI.