jogamp.newt.driver.DriverClearFocus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jogl-all Show documentation
Show all versions of jogl-all Show documentation
Java™ Binding for the OpenGL® API
package jogamp.newt.driver;
/**
* Interface tagging driver requirement of clearing the focus.
*
* Some drivers require a programmatic {@link #clearFocus()} when traversing the focus.
*
*/
public interface DriverClearFocus {
/** Programmatic clear the focus */
void clearFocus();
}