aboutsummaryrefslogtreecommitdiffstats
path: root/netx/com/jogamp/plugin/ui/NativeWindowDownstream.java
diff options
context:
space:
mode:
Diffstat (limited to 'netx/com/jogamp/plugin/ui/NativeWindowDownstream.java')
-rw-r--r--netx/com/jogamp/plugin/ui/NativeWindowDownstream.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/netx/com/jogamp/plugin/ui/NativeWindowDownstream.java b/netx/com/jogamp/plugin/ui/NativeWindowDownstream.java
index bed433b..c698f05 100644
--- a/netx/com/jogamp/plugin/ui/NativeWindowDownstream.java
+++ b/netx/com/jogamp/plugin/ui/NativeWindowDownstream.java
@@ -38,12 +38,12 @@ public interface NativeWindowDownstream {
/**
* Destroys this window incl. releasing all related resources.
*/
- public void destroy();
+ void destroy();
/**
* @return The parent NativeWindow, or null if this NativeWindow is top level.
*/
- public NativeWindowUpstream getParent();
+ NativeWindowUpstream getParent();
/**
* Returns the window handle for this applet. <P>
@@ -54,22 +54,22 @@ public interface NativeWindowDownstream {
* On X11 this returns an entity of type Window. <BR>
* On Microsoft Windows this returns an entity of type HWND.
*/
- public long getWindowHandle();
+ long getWindowHandle();
/**
* Set size.
*/
- public void setSize(int width, int height);
+ void setSize(int width, int height);
/**
* Request focus.
*/
- public void requestFocus();
+ void requestFocus();
/**
* Set this NativeWindow visible state.
*/
- public void setVisible(boolean v);
+ void setVisible(boolean v);
/**
* Trigger asynchronous rendering of this display's content.
@@ -77,7 +77,7 @@ public interface NativeWindowDownstream {
* Method shall return immediately and not wait for result.
* </p>
*/
- public void display();
+ void display();
/**
* Notify applet that the plugin's window has changed it's position.