diff options
author | Sven Gothel <[email protected]> | 2015-01-23 01:34:19 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-01-23 01:34:19 +0100 |
commit | 57dab52159394c2d7d48fe69417561e2f881b7a8 (patch) | |
tree | 9dabadc58c357793c4fb4c16e127e5252d0b61cc /src | |
parent | 5d41177385e5d0a5fa84fe5cd11b6cb76393efbd (diff) |
Bug 1100: Fix href to 'lifecycleHeavy' -> '#lifecycleHeavy' (anchor)
Diffstat (limited to 'src')
-rw-r--r-- | src/newt/classes/com/jogamp/newt/Window.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/newt/classes/com/jogamp/newt/Window.java b/src/newt/classes/com/jogamp/newt/Window.java index 3a08f32cf..c4ca9a554 100644 --- a/src/newt/classes/com/jogamp/newt/Window.java +++ b/src/newt/classes/com/jogamp/newt/Window.java @@ -95,7 +95,7 @@ import javax.media.nativewindow.util.SurfaceSize; * System.setProperty("newt.window.icons", "newt/data/jogamp-16x16.png newt/data/jogamp-32x32.png"); * </pre> * </p> - * + * * <a name="lifecycleHeavy"><h5>Use of Lifecycle Heavy functions</h5></a> * <p> * Some of the methods specified here are lifecycle-heavy. That is, they are able @@ -103,7 +103,7 @@ import javax.media.nativewindow.util.SurfaceSize; * are <i>not safe</i> to be called from EDT related threads. For example, it is not * safe for a method in an attached {@link KeyListener} to call {@link #setFullscreen(boolean)} * on a {@link Window} directly. It is safe, however, for that method to spawn a background - * worker thread which calls the method directly. The documentation for individual methods + * worker thread which calls the method directly. The documentation for individual methods * indicates whether or not they are lifecycle-heavy. * </p> */ @@ -185,7 +185,7 @@ public interface Window extends NativeWindow, WindowClosingProtocol, ScalableSur * <p> * The Window can be recreate via {@link #setVisible(boolean) setVisible(true)}. * </p> - * <p>This method is <a href="lifecycleHeavy">lifecycle heavy</a>.</p> + * <p>This method is <a href="#lifecycleHeavy">lifecycle heavy</a>.</p> * @see #destroy() * @see #setVisible(boolean) */ @@ -205,7 +205,7 @@ public interface Window extends NativeWindow, WindowClosingProtocol, ScalableSur /** * Calls {@link #setVisible(boolean, boolean) setVisible(true, visible)}, * i.e. blocks until the window becomes visible. - * <p>This method is <a href="lifecycleHeavy">lifecycle heavy</a>.</p> + * <p>This method is <a href="#lifecycleHeavy">lifecycle heavy</a>.</p> * @see #setVisible(boolean, boolean) */ void setVisible(boolean visible); @@ -239,7 +239,7 @@ public interface Window extends NativeWindow, WindowClosingProtocol, ScalableSur * i.e. {@link javax.media.nativewindow.NativeWindow#getWindowHandle()} returns <code>null</code>.<br> * <code>setVisible(wait, true)</code> shall be repeated when the parent becomes valid. * </p> - * <p>This method is <a href="lifecycleHeavy">lifecycle heavy</a>.</p> + * <p>This method is <a href="#lifecycleHeavy">lifecycle heavy</a>.</p> */ void setVisible(boolean wait, boolean visible); @@ -484,7 +484,7 @@ public interface Window extends NativeWindow, WindowClosingProtocol, ScalableSur * this window is removed from it's list of children.<br> * In case the new parent is not null and a Window, * this window is added to it's list of children.<br></P> - * <p>This method is <a href="lifecycleHeavy">lifecycle heavy</a>.</p> + * <p>This method is <a href="#lifecycleHeavy">lifecycle heavy</a>.</p> * * @param newParent The new parent NativeWindow. If null, this Window becomes a top level window. * @param x new top-level position in window units, use -1 for default position. @@ -500,7 +500,7 @@ public interface Window extends NativeWindow, WindowClosingProtocol, ScalableSur * <p> * Fullscreen mode is established on the {@link #getMainMonitor() main monitor}. * </p> - * <p>This method is <a href="lifecycleHeavy">lifecycle heavy</a>.</p> + * <p>This method is <a href="#lifecycleHeavy">lifecycle heavy</a>.</p> * @param fullscreen enable or disable fullscreen mode * @return success * @see #setFullscreen(List) @@ -514,7 +514,7 @@ public interface Window extends NativeWindow, WindowClosingProtocol, ScalableSur * <p> * Disable fullscreen via {@link #setFullscreen(boolean)}. * </p> - * <p>This method is <a href="lifecycleHeavy">lifecycle heavy</a>.</p> + * <p>This method is <a href="#lifecycleHeavy">lifecycle heavy</a>.</p> * @param monitors if <code>null</code> fullscreen will be spanned across all {@link MonitorDevice}s, * otherwise across the given list of {@link MonitorDevice}. * @return success |