From af45f95f16cee22f8f012f706f4d0a42eaeb68fa Mon Sep 17 00:00:00 2001 From: Graeme Geldenhuys Date: Thu, 22 Nov 2012 11:48:47 +0000 Subject: Fixes line ending issues --- .../net/miginfocom/layout/LayoutCallback.java | 96 +++++++++++----------- 1 file changed, 48 insertions(+), 48 deletions(-) (limited to 'prototypes/miglayout/net/miginfocom/layout/LayoutCallback.java') diff --git a/prototypes/miglayout/net/miginfocom/layout/LayoutCallback.java b/prototypes/miglayout/net/miginfocom/layout/LayoutCallback.java index f0855701..51acc218 100644 --- a/prototypes/miglayout/net/miginfocom/layout/LayoutCallback.java +++ b/prototypes/miglayout/net/miginfocom/layout/LayoutCallback.java @@ -1,48 +1,48 @@ -package net.miginfocom.layout; - -import net.miginfocom.layout.UnitValue; -import net.miginfocom.layout.ComponentWrapper; -import net.miginfocom.layout.BoundSize; - -/** A class to extend if you want to provide more control over where a component is placed or the size of it. - *

- * Note! Returned arrays from this class will never be altered. This means that caching of arrays in these methods - * is OK. - */ -public abstract class LayoutCallback -{ - /** Returns a position similar to the "pos" the component constraint. - * @param comp The component wrapper that holds the actual component (JComponent is Swing and Control in SWT). - * Should not be altered. - * @return The [x, y, x2, y2] as explained in the documentation for "pos". If null - * is returned nothing is done and this is the default. - * @see UnitValue - * @see net.miginfocom.layout.ConstraintParser#parseUnitValue(String, boolean) - */ - public UnitValue[] getPosition(ComponentWrapper comp) - { - return null; - } - - /** Returns a size similar to the "width" and "height" in the component constraint. - * @param comp The component wrapper that holds the actual component (JComponent is Swing and Control in SWT). - * Should not be altered. - * @return The [width, height] as explained in the documentation for "width" and "height". If null - * is returned nothing is done and this is the default. - * @see net.miginfocom.layout.BoundSize - * @see net.miginfocom.layout.ConstraintParser#parseBoundSize(String, boolean, boolean) - */ - public BoundSize[] getSize(ComponentWrapper comp) - { - return null; - } - - /** A last minute change of the bounds. The bound for the layout cycle has been set and you can correct there - * after any set of rules you like. - * @param comp The component wrapper that holds the actual component (JComponent is Swing and Control in SWT). - * Should not be altered. - */ - public void correctBounds(ComponentWrapper comp) - { - } -} +package net.miginfocom.layout; + +import net.miginfocom.layout.UnitValue; +import net.miginfocom.layout.ComponentWrapper; +import net.miginfocom.layout.BoundSize; + +/** A class to extend if you want to provide more control over where a component is placed or the size of it. + *

+ * Note! Returned arrays from this class will never be altered. This means that caching of arrays in these methods + * is OK. + */ +public abstract class LayoutCallback +{ + /** Returns a position similar to the "pos" the component constraint. + * @param comp The component wrapper that holds the actual component (JComponent is Swing and Control in SWT). + * Should not be altered. + * @return The [x, y, x2, y2] as explained in the documentation for "pos". If null + * is returned nothing is done and this is the default. + * @see UnitValue + * @see net.miginfocom.layout.ConstraintParser#parseUnitValue(String, boolean) + */ + public UnitValue[] getPosition(ComponentWrapper comp) + { + return null; + } + + /** Returns a size similar to the "width" and "height" in the component constraint. + * @param comp The component wrapper that holds the actual component (JComponent is Swing and Control in SWT). + * Should not be altered. + * @return The [width, height] as explained in the documentation for "width" and "height". If null + * is returned nothing is done and this is the default. + * @see net.miginfocom.layout.BoundSize + * @see net.miginfocom.layout.ConstraintParser#parseBoundSize(String, boolean, boolean) + */ + public BoundSize[] getSize(ComponentWrapper comp) + { + return null; + } + + /** A last minute change of the bounds. The bound for the layout cycle has been set and you can correct there + * after any set of rules you like. + * @param comp The component wrapper that holds the actual component (JComponent is Swing and Control in SWT). + * Should not be altered. + */ + public void correctBounds(ComponentWrapper comp) + { + } +} -- cgit v1.2.3-54-g00ecf