diff options
Diffstat (limited to 'netx/com/jogamp/plugin/ui/NativeWindowUpstream.java')
-rw-r--r-- | netx/com/jogamp/plugin/ui/NativeWindowUpstream.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/netx/com/jogamp/plugin/ui/NativeWindowUpstream.java b/netx/com/jogamp/plugin/ui/NativeWindowUpstream.java index 942b509..91b2390 100644 --- a/netx/com/jogamp/plugin/ui/NativeWindowUpstream.java +++ b/netx/com/jogamp/plugin/ui/NativeWindowUpstream.java @@ -38,12 +38,12 @@ public interface NativeWindowUpstream { * On X11 this returns the X11 display connection string, e.g. <code>:0.0</code>.<BR> * </p> */ - public String getDisplayConnection(); + String getDisplayConnection(); /** * Returns the screen index for this NativeWindow. */ - public int getScreenIndex(); + int getScreenIndex(); /** * Returns the window handle for this NativeWindow. <P> @@ -54,7 +54,7 @@ public interface NativeWindowUpstream { * 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(); /** * @return the current x position of the top-left corner @@ -74,16 +74,16 @@ public interface NativeWindowUpstream { * Returns the width of the client area excluding insets (window decorations). * @return width of the client area */ - public int getWidth(); + int getWidth(); /** * Returns the height of the client area excluding insets (window decorations). * @return height of the client area */ - public int getHeight(); + int getHeight(); /** * Notify plugin that the applet's window has been <i>updated</i>, e.g. rendered and swapped. */ - public void notifySurfaceUpdated(NativeWindowDownstream swappedWin); + void notifySurfaceUpdated(NativeWindowDownstream swappedWin); } |