--- old/src/java.desktop/share/classes/javax/swing/text/ZoneView.java 2015-04-06 22:10:19.353237800 -0700 +++ new/src/java.desktop/share/classes/javax/swing/text/ZoneView.java 2015-04-06 22:10:19.201237796 -0700 @@ -94,6 +94,7 @@ /** * Get the current maximum zone size. + * @return the current maximum zone size */ public int getMaximumZoneSize() { return maxZoneSize; @@ -117,6 +118,8 @@ /** * Get the current setting of the number of zones * allowed to be loaded at the same time. + * @return current setting of the number of zones + * allowed to be loaded at the same time */ public int getMaxZonesLoaded() { return maxZonesLoaded; @@ -184,6 +187,9 @@ * child elements of the element this view is responsible for. * Therefore, the default implementation is to return * true if the view has children. + * param zone the child view + * @param zone the zone + * @return whether or not the zone is in the loaded state. */ protected boolean isZoneLoaded(View zone) { return (zone.getViewCount() > 0); @@ -203,6 +209,8 @@ * @param p1 the end of the desired zone. This should * be > getStartOffset() and <= getEndOffset(). This * value should also be > p0. + * @return a view to represent a zone for the given range within + * the model */ protected View createZone(int p0, int p1) { Document doc = getDocument();