diff options
Diffstat (limited to 'libjava/classpath/javax/swing/ViewportLayout.java')
-rw-r--r-- | libjava/classpath/javax/swing/ViewportLayout.java | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/libjava/classpath/javax/swing/ViewportLayout.java b/libjava/classpath/javax/swing/ViewportLayout.java index b61834e9e50..02f9626ad28 100644 --- a/libjava/classpath/javax/swing/ViewportLayout.java +++ b/libjava/classpath/javax/swing/ViewportLayout.java @@ -46,13 +46,13 @@ import java.awt.Rectangle; import java.io.Serializable; /** - * The default layout for {@link JViewport}. The viewport makes its view the - * same size as itself, but not smaller than its minimum size. - * + * The default layout for {@link JViewport}. The viewport makes its view the + * same size as itself, but not smaller than its minimum size. + * * If the port extends extends into space <em>past</em> the edge of the view, * this layout manager moves the port up or to the left, in view space, by the * amount of empty space (keep the lower and right edges lined up). - * + * * @author Andrew Selkirk * @author Graydon Hoare * @author Audrius Meskauskas (audriusa@Bioinformatics.org) @@ -61,15 +61,15 @@ public class ViewportLayout implements LayoutManager, Serializable { private static final long serialVersionUID = -788225906076097229L; - public ViewportLayout() + public ViewportLayout() { // Nothing to do here. } - + /** * The method is not used with this manager. */ - public void addLayoutComponent(String name, Component c) + public void addLayoutComponent(String name, Component c) { // Nothing to do here. } @@ -77,20 +77,20 @@ public class ViewportLayout implements LayoutManager, Serializable /** * The method is not used with this manager. */ - public void removeLayoutComponent(Component c) + public void removeLayoutComponent(Component c) { // Nothing to do here. } - + /** * Get the preferred layout size. If the view implements - * {@link Scrollable}, this method returns + * {@link Scrollable}, this method returns * {@link Scrollable#getPreferredScrollableViewportSize}. * Otherwise, it returns {@link Component#getPreferredSize()}. - * + * * @return the preferred layout size, as described about. */ - public Dimension preferredLayoutSize(Container parent) + public Dimension preferredLayoutSize(Container parent) { JViewport vp = (JViewport)parent; Component view = vp.getView(); @@ -107,13 +107,13 @@ public class ViewportLayout implements LayoutManager, Serializable /** * Get the minimum layout size. Normally this method returns the value, * returned by the view method {@link Component#getMinimumSize()}. - * - * If the view is not set, the zero size is returned. + * + * If the view is not set, the zero size is returned. * * @param parent the viewport * @return the minimum layout size. */ - public Dimension minimumLayoutSize(Container parent) + public Dimension minimumLayoutSize(Container parent) { // These values have been determined by the Mauve test for this method. return new Dimension(4, 4); @@ -132,7 +132,7 @@ public class ViewportLayout implements LayoutManager, Serializable * <li>In {@link JViewport#setViewSize(Dimension)}, the view size is never * set smaller that its minimum size.</li> * </ol> - * + * * @see JViewport#getViewSize * @see JViewport#setViewSize * @see JViewport#getViewPosition |