--- a/jdk/src/java.desktop/share/classes/java/awt/AWTEventMulticaster.java Mon Mar 30 18:41:51 2015 +0300
+++ b/jdk/src/java.desktop/share/classes/java/awt/AWTEventMulticaster.java Tue Mar 31 08:48:53 2015 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -1088,6 +1088,7 @@
* contains only the specified listener. If no such listeners are chained,
* this method returns an empty array.
*
+ * @param <T> the listener type
* @param l the specified <code>java.util.EventListener</code>
* @param listenerType the type of listeners requested; this parameter
* should specify an interface that descends from
--- a/jdk/src/java.desktop/share/classes/java/awt/Component.java Mon Mar 30 18:41:51 2015 +0300
+++ b/jdk/src/java.desktop/share/classes/java/awt/Component.java Tue Mar 31 08:48:53 2015 -0700
@@ -4316,9 +4316,12 @@
*/
protected boolean validatedContents; // = false
/**
- * Size of the back buffers
+ * Width of the back buffers
*/
protected int width;
+ /**
+ * Height of the back buffers
+ */
protected int height;
/**
@@ -6013,6 +6016,7 @@
*
* If no such listeners exist, this method returns an empty array.
*
+ * @param <T> the type of the listeners
* @param listenerType the type of listeners requested; this parameter
* should specify an interface that descends from
* <code>java.util.EventListener</code>
--- a/jdk/src/java.desktop/share/classes/java/awt/MenuComponent.java Mon Mar 30 18:41:51 2015 +0300
+++ b/jdk/src/java.desktop/share/classes/java/awt/MenuComponent.java Tue Mar 31 08:48:53 2015 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1995, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -328,6 +328,7 @@
* Its use is discouraged, and it may not be supported
* in the future.
* @param evt the event which is to take place
+ * @return unconditionally returns false
* @deprecated As of JDK version 1.1, replaced by {@link
* #dispatchEvent(AWTEvent) dispatchEvent}.
*/
--- a/jdk/src/java.desktop/share/classes/java/awt/MenuContainer.java Mon Mar 30 18:41:51 2015 +0300
+++ b/jdk/src/java.desktop/share/classes/java/awt/MenuContainer.java Tue Mar 31 08:48:53 2015 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1995, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -50,6 +50,7 @@
* Posts an event to the listeners.
*
* @param evt the event to dispatch
+ * @return the results of posting the event
* @deprecated As of JDK version 1.1
* replaced by dispatchEvent(AWTEvent).
*/
--- a/jdk/src/java.desktop/share/classes/java/awt/MenuItem.java Mon Mar 30 18:41:51 2015 +0300
+++ b/jdk/src/java.desktop/share/classes/java/awt/MenuItem.java Tue Mar 31 08:48:53 2015 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1995, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -595,6 +595,7 @@
*
* If no such listeners exist, this method returns an empty array.
*
+ * @param <T> the type of the listeners
* @param listenerType the type of listeners requested; this parameter
* should specify an interface that descends from
* <code>java.util.EventListener</code>
--- a/jdk/src/java.desktop/share/classes/java/awt/Toolkit.java Mon Mar 30 18:41:51 2015 +0300
+++ b/jdk/src/java.desktop/share/classes/java/awt/Toolkit.java Tue Mar 31 08:48:53 2015 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1995, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -1766,6 +1766,7 @@
*
* subclasses should override this to provide their own implementation
*
+ * @param <T> the type of DragGestureRecognizer to create
* @param abstractRecognizerClass The abstract class of the required recognizer
* @param ds The DragSource
* @param c The Component target for the DragGestureRecognizer
@@ -1867,7 +1868,9 @@
}
/**
- * an opportunity to lazily evaluate desktop property values.
+ * An opportunity to lazily evaluate desktop property values.
+ * @return the desktop property or null
+ * @param name the name
*/
protected Object lazilyLoadDesktopProperty(String name) {
return null;
@@ -1947,8 +1950,14 @@
return desktopPropsSupport.getPropertyChangeListeners(propertyName);
}
+ /**
+ * The desktop properties.
+ */
protected final Map<String,Object> desktopProperties =
new HashMap<String,Object>();
+ /**
+ * The desktop properties change support.
+ */
protected final PropertyChangeSupport desktopPropsSupport =
Toolkit.createPropertyChangeSupport(this);
--- a/jdk/src/java.desktop/share/classes/java/awt/Window.java Mon Mar 30 18:41:51 2015 +0300
+++ b/jdk/src/java.desktop/share/classes/java/awt/Window.java Tue Mar 31 08:48:53 2015 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1995, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -2789,6 +2789,7 @@
/**
* @deprecated As of J2SE 1.4, replaced by
* {@link Component#applyComponentOrientation Component.applyComponentOrientation}.
+ * @param rb the resource bundle
*/
@Deprecated
public void applyResourceBundle(ResourceBundle rb) {
@@ -2798,6 +2799,7 @@
/**
* @deprecated As of J2SE 1.4, replaced by
* {@link Component#applyComponentOrientation Component.applyComponentOrientation}.
+ * @param rbName the resource name
*/
@Deprecated
public void applyResourceBundle(String rbName) {