From 61a3ed58b969c75a398e6bb8d753dfb5445e6c10 Mon Sep 17 00:00:00 2001
From: Sven Gothel
@@ -54,22 +54,22 @@ public interface NativeWindowDownstream {
* On X11 this returns an entity of type Window.
* 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.
* :0.0
.
*
@@ -54,7 +54,7 @@ public interface NativeWindowUpstream {
* On X11 this returns an entity of type Window.
* 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 updated, e.g. rendered and swapped.
*/
- public void notifySurfaceUpdated(NativeWindowDownstream swappedWin);
+ void notifySurfaceUpdated(NativeWindowDownstream swappedWin);
}
--
cgit v1.2.3