< prev index next >
src/java.desktop/unix/classes/sun/awt/X11/XBaseWindow.java
Print this page
@@ -168,11 +168,11 @@
// Set WM_CLIENT_LEADER property
initClientLeader();
}
/**
- * Creates window using parameters <code>params</code>
+ * Creates window using parameters {@code params}
* If params contain flag DELAYED doesn't do anything.
* Note: Descendants can call this method to create the window
* at the time different to instance construction.
*/
protected final void init(XCreateWindowParams params) {
@@ -298,11 +298,11 @@
eventMask |= XConstants.PropertyChangeMask | XConstants.OwnerGrabButtonMask;
params.put(EVENT_MASK, Long.valueOf(eventMask));
}
/**
- * Creates window with parameters specified by <code>params</code>
+ * Creates window with parameters specified by {@code params}
* @see #init
*/
private final void create(XCreateWindowParams params) {
XToolkit.awtLock();
try {
< prev index next >