Author: rwhitcomb Date: Sat Oct 5 00:39:40 2013 New Revision: 1529367 URL: http://svn.apache.org/r1529367 Log: Restore preformatted diagrams after previous formatting changes took out the whitespace used to make the diagrams.
Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FillPane.java Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/FillPane.java URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/FillPane.java?rev=1529367&r1=1529366&r2=1529367&view=diff ============================================================================== --- pivot/trunk/wtk/src/org/apache/pivot/wtk/FillPane.java (original) +++ pivot/trunk/wtk/src/org/apache/pivot/wtk/FillPane.java Sat Oct 5 00:39:40 2013 @@ -32,19 +32,34 @@ import org.apache.pivot.util.ListenerLis * child's width will be 1/n of the total width. The children will always * stretch to the full width / height of the orthogonal direction. <p> Here is * an example: for a horizontal FillPane with three buttons as children: - * <pre>+--------------------------------------------------+ - * |+---------------++--------------++---------------+| || || || || || || || || - * || || || || || Button 1 || Button 2 || Button 3 || || || || || || || || || || - * || || || |+---------------++--------------++---------------+| - * +--------------------------------------------------+</pre> <p> And here is a - * vertical FillPane with three Button children: - * <pre>+--------------------------------------------------+ - * |+------------------------------------------------+| || || || Button 1 || || - * || |+------------------------------------------------+| - * |+------------------------------------------------+| || || || Button 2 || || - * || |+------------------------------------------------+| - * |+------------------------------------------------+| || || || Button 3 || || - * || |+------------------------------------------------+| + * <pre> +--------------------------------------------------+ + * |+---------------++--------------++---------------+| + * || || || || + * || || || || + * || || || || + * || Button 1 || Button 2 || Button 3 || + * || || || || + * || || || || + * || || || || + * |+---------------++--------------++---------------+| + * +--------------------------------------------------+</pre> + * <p> And here is a vertical FillPane with three Button children: + * <pre> +--------------------------------------------------+ + * |+------------------------------------------------+| + * || || + * || Button 1 || + * || || + * |+------------------------------------------------+| + * |+------------------------------------------------+| + * || || + * || Button 2 || + * || || + * |+------------------------------------------------+| + * |+------------------------------------------------+| + * || || + * || Button 3 || + * || || + * |+------------------------------------------------+| * +--------------------------------------------------+</pre> */ public class FillPane extends Container {