Match Group 0 of size 2+2 ---- Ranked Result: ---- Match Group 1 of size 1+75 ---- Ranked Result: ---- Match Group 2 of size 2+3 ---- Ranked Result: ---- Match Group 3 of size 1+5 ---- Ranked Result: ---- Match Group 4 of size 1+2 ---- Ranked Result: ---- Match Group 5 of size 1+3 ---- Ranked Result: ---- Match Group 6 of size 1+14 ---- Ranked Result: ---- Match Group 7 of size 1+16 ---- Ranked Result: ---- Match Group 8 of size 1+3 ---- Ranked Result: ---- Match Group 9 of size 1+7 ---- Ranked Result: ---- Match Group 10 of size 1+2 ---- Ranked Result: ---- Match Group 11 of size 1+4 ---- Ranked Result: ---- Match Group 12 of size 1+4 ---- Ranked Result: ---- Match Group 13 of size 1+2 ---- Ranked Result: ---- Match Group 14 of size 1+2 ---- Ranked Result: ---- Match Group 15 of size 4+13 ---- Ranked Result: ---- Match Group 16 of size 3+34 ---- Ranked Result: ---- Match Group 17 of size 1+3 ---- Ranked Result: ---- Match Group 18 of size 1+1 ---- Ranked Result: ---- Match Group 19 of size 3+4 ---- Ranked Result: ---- Match Group 20 of size 1+2 ---- Ranked Result: ---- Match Group 21 of size 1+3 ---- Ranked Result: 1. (size 12) Returns the preferred size. @param parent the parent. @return the preferred size. ---- /home/edmund/evaluate_projects/JHotDraw7.0.6/src/org/jhotdraw/draw/action/VerticalGridLayout.java: 208-228 Length: 3 Determines the preferred size of the container argument using this grid layout.

The preferred width of a grid layout is the largest preferred width of any of the components in the container times the number of columns, plus the horizontal padding times the number of columns plus one, plus the left and right insets of the target container.

The preferred height of a grid layout is the largest preferred height of any of the components in the container times the number of rows, plus the vertical padding times the number of rows plus one, plus the top and bottom insets of the target container. @param parent the container in which to do the layout @return the preferred dimensions to lay out the subcomponents of the specified container * /** * * Determines the preferred size of the container argument using * * this grid layout. * *

* * The preferred width of a grid layout is the largest preferred * * width of any of the components in the container times the number of * * columns, plus the horizontal padding times the number of columns * * plus one, plus the left and right insets of the target container. * *

* * The preferred height of a grid layout is the largest preferred * * height of any of the components in the container times the number of * * rows, plus the vertical padding times the number of rows plus one, * * plus the top and bottom insets of the target container. * * * * @param parent the container in which to do the layout * * @return the preferred dimensions to lay out the * * subcomponents of the specified container * */ * public Dimension preferredLayoutSize(Container parent) { * synchronized (parent.getTreeLock()) { * Insets insets = parent.getInsets(); ---- /home/edmund/database-mana/databaseGitHub/mdrill/trunk/adhoc-internal/src/main/java/org/jfree/layout/CenterLayout.java: 70-80 Length: 3 local sim: [[parent, size, preferred]] global sim: [[]] Returns the preferred size. @param parent the parent. @return the preferred size. < /** < * Returns the preferred size. < * < * @param parent the parent. < * < * @return the preferred size. < */ < public Dimension preferredLayoutSize(final Container parent) { < < synchronized (parent.getTreeLock()) { < final Insets insets = parent.getInsets(); ---- Comments (size 1): 1. Returns the preferred size. @param parent the parent. @return the preferred size. ---- Match Group 22 of size 1+3 ---- Ranked Result: 1. (size 12) Returns the minimum size. @param parent the parent. @return the minimum size. ---- /home/edmund/evaluate_projects/JHotDraw7.0.6/src/org/jhotdraw/draw/action/VerticalGridLayout.java: 255-275 Length: 3 Determines the minimum size of the container argument using this grid layout.

The minimum width of a grid layout is the largest minimum width of any of the components in the container times the number of columns, plus the horizontal padding times the number of columns plus one, plus the left and right insets of the target container.

The minimum height of a grid layout is the largest minimum height of any of the components in the container times the number of rows, plus the vertical padding times the number of rows plus one, plus the top and bottom insets of the target container. @param parent the container in which to do the layout @return the minimum dimensions needed to lay out the subcomponents of the specified container * /** * * Determines the minimum size of the container argument using this * * grid layout. * *

* * The minimum width of a grid layout is the largest minimum width * * of any of the components in the container times the number of columns, * * plus the horizontal padding times the number of columns plus one, * * plus the left and right insets of the target container. * *

* * The minimum height of a grid layout is the largest minimum height * * of any of the components in the container times the number of rows, * * plus the vertical padding times the number of rows plus one, plus * * the top and bottom insets of the target container. * * * * @param parent the container in which to do the layout * * @return the minimum dimensions needed to lay out the * * subcomponents of the specified container * */ * public Dimension minimumLayoutSize(Container parent) { * synchronized (parent.getTreeLock()) { * Insets insets = parent.getInsets(); ---- /home/edmund/database-mana/databaseGitHub/mdrill/trunk/adhoc-internal/src/main/java/org/jfree/layout/CenterLayout.java: 98-108 Length: 3 local sim: [[parent, size, minimum]] global sim: [[]] Returns the minimum size. @param parent the parent. @return the minimum size. < /** < * Returns the minimum size. < * < * @param parent the parent. < * < * @return the minimum size. < */ < public Dimension minimumLayoutSize(final Container parent) { < < synchronized (parent.getTreeLock()) { < final Insets insets = parent.getInsets(); ---- Comments (size 1): 1. Returns the minimum size. @param parent the parent. @return the minimum size. ---- Match Group 23 of size 1+2 ---- Ranked Result: 1. (size 13) Lays out the specified container. @param parent the container to be laid out 2. (size 18) Lays out the container in the specified panel. @param parent the component which needs to be laid out ---- /home/edmund/evaluate_projects/JHotDraw7.0.6/src/org/jhotdraw/draw/action/VerticalGridLayout.java: 302-322 Length: 3 Lays out the specified container using this layout.

This method reshapes the components in the specified target container in order to satisfy the constraints of the VerticalGridLayout object.

The grid layout manager determines the size of individual components by dividing the free space in the container into equal-sized portions according to the number of rows and columns in the layout. The container's free space equals the container's size minus any insets and any specified horizontal or vertical gap. All components in a grid layout are given the same size. @param parent the container in which to do the layout @see java.awt.Container @see java.awt.Container#doLayout * /** * * Lays out the specified container using this layout. * *

* * This method reshapes the components in the specified target * * container in order to satisfy the constraints of the * * VerticalGridLayout object. * *

* * The grid layout manager determines the size of individual * * components by dividing the free space in the container into * * equal-sized portions according to the number of rows and columns * * in the layout. The container's free space equals the container's * * size minus any insets and any specified horizontal or vertical * * gap. All components in a grid layout are given the same size. * * * * @param parent the container in which to do the layout * * @see java.awt.Container * * @see java.awt.Container#doLayout * */ * public void layoutContainer(Container parent) { * synchronized (parent.getTreeLock()) { * Insets insets = parent.getInsets(); ---- /home/edmund/database-mana/databaseGitHub/mdrill/trunk/adhoc-internal/src/main/java/org/jfree/ui/tabbedui/VerticalLayout.java: 173-180 Length: 3 local sim: [[container, parent]] global sim: [[component]] Lays out the container in the specified panel. @param parent the component which needs to be laid out < /** < * Lays out the container in the specified panel. < * < * @param parent the component which needs to be laid out < */ < public void layoutContainer(final Container parent) { < synchronized (parent.getTreeLock()) { < final Insets ins = parent.getInsets(); ---- /home/edmund/database-mana/databaseGitHub/mdrill/trunk/adhoc-internal/src/main/java/org/jfree/ui/OverlayLayout.java: 104-111 Length: 3 local sim: [[container, parent]] global sim: [[]] Lays out the specified container. @param parent the container to be laid out < /** < * Lays out the specified container. < * < * @param parent the container to be laid out < */ < public void layoutContainer(final Container parent) { < synchronized (parent.getTreeLock()) { < final Insets ins = parent.getInsets(); ---- Comments (size 2): 1. Lays out the specified container. @param parent the container to be laid out 2. Lays out the container in the specified panel. @param parent the component which needs to be laid out ---- Match Group 24 of size 1+1 ---- Ranked Result: 1. (size 20) Returns the preferred size using this layout manager. @param parent the parent. @return the preferred size using this layout manager. ---- /home/edmund/evaluate_projects/JHotDraw7.0.6/src/org/jhotdraw/draw/action/VerticalGridLayout.java: 208-229 Length: 4 Determines the preferred size of the container argument using this grid layout.

The preferred width of a grid layout is the largest preferred width of any of the components in the container times the number of columns, plus the horizontal padding times the number of columns plus one, plus the left and right insets of the target container.

The preferred height of a grid layout is the largest preferred height of any of the components in the container times the number of rows, plus the vertical padding times the number of rows plus one, plus the top and bottom insets of the target container. @param parent the container in which to do the layout @return the preferred dimensions to lay out the subcomponents of the specified container * /** * * Determines the preferred size of the container argument using * * this grid layout. * *

* * The preferred width of a grid layout is the largest preferred * * width of any of the components in the container times the number of * * columns, plus the horizontal padding times the number of columns * * plus one, plus the left and right insets of the target container. * *

* * The preferred height of a grid layout is the largest preferred * * height of any of the components in the container times the number of * * rows, plus the vertical padding times the number of rows plus one, * * plus the top and bottom insets of the target container. * * * * @param parent the container in which to do the layout * * @return the preferred dimensions to lay out the * * subcomponents of the specified container * */ * public Dimension preferredLayoutSize(Container parent) { * synchronized (parent.getTreeLock()) { * Insets insets = parent.getInsets(); * int ncomponents = parent.getComponentCount(); ---- /home/edmund/database-mana/databaseGitHub/mdrill/trunk/adhoc-internal/src/main/java/org/jfree/layout/LCBLayout.java: 93-104 Length: 4 local sim: [[layout, parent, size, preferred]] global sim: [[]] Returns the preferred size using this layout manager. @param parent the parent. @return the preferred size using this layout manager. < /** < * Returns the preferred size using this layout manager. < * < * @param parent the parent. < * < * @return the preferred size using this layout manager. < */ < public Dimension preferredLayoutSize(final Container parent) { < < synchronized (parent.getTreeLock()) { < final Insets insets = parent.getInsets(); < final int ncomponents = parent.getComponentCount(); ---- Comments (size 1): 1. Returns the preferred size using this layout manager. @param parent the parent. @return the preferred size using this layout manager. ---- Match Group 25 of size 3+2 ---- Ranked Result: ---- Match Group 26 of size 2+1 ---- Ranked Result: ---- Match Group 27 of size 1+1 ---- Ranked Result: 1. (size 20) Returns the minimum size using this layout manager. @param parent the parent. @return the minimum size using this layout manager. ---- /home/edmund/evaluate_projects/JHotDraw7.0.6/src/org/jhotdraw/draw/action/VerticalGridLayout.java: 255-276 Length: 4 Determines the minimum size of the container argument using this grid layout.

The minimum width of a grid layout is the largest minimum width of any of the components in the container times the number of columns, plus the horizontal padding times the number of columns plus one, plus the left and right insets of the target container.

The minimum height of a grid layout is the largest minimum height of any of the components in the container times the number of rows, plus the vertical padding times the number of rows plus one, plus the top and bottom insets of the target container. @param parent the container in which to do the layout @return the minimum dimensions needed to lay out the subcomponents of the specified container * /** * * Determines the minimum size of the container argument using this * * grid layout. * *

* * The minimum width of a grid layout is the largest minimum width * * of any of the components in the container times the number of columns, * * plus the horizontal padding times the number of columns plus one, * * plus the left and right insets of the target container. * *

* * The minimum height of a grid layout is the largest minimum height * * of any of the components in the container times the number of rows, * * plus the vertical padding times the number of rows plus one, plus * * the top and bottom insets of the target container. * * * * @param parent the container in which to do the layout * * @return the minimum dimensions needed to lay out the * * subcomponents of the specified container * */ * public Dimension minimumLayoutSize(Container parent) { * synchronized (parent.getTreeLock()) { * Insets insets = parent.getInsets(); * int ncomponents = parent.getComponentCount(); ---- /home/edmund/database-mana/databaseGitHub/mdrill/trunk/adhoc-internal/src/main/java/org/jfree/layout/LCBLayout.java: 134-145 Length: 4 local sim: [[layout, parent, size, minimum]] global sim: [[]] Returns the minimum size using this layout manager. @param parent the parent. @return the minimum size using this layout manager. < /** < * Returns the minimum size using this layout manager. < * < * @param parent the parent. < * < * @return the minimum size using this layout manager. < */ < public Dimension minimumLayoutSize(final Container parent) { < < synchronized (parent.getTreeLock()) { < final Insets insets = parent.getInsets(); < final int ncomponents = parent.getComponentCount(); ---- Comments (size 1): 1. Returns the minimum size using this layout manager. @param parent the parent. @return the minimum size using this layout manager. ---- Match Group 28 of size 1+1 ---- Ranked Result: 1. (size 8) Lays out the components. @param parent the parent. ---- /home/edmund/evaluate_projects/JHotDraw7.0.6/src/org/jhotdraw/draw/action/VerticalGridLayout.java: 302-323 Length: 4 Lays out the specified container using this layout.

This method reshapes the components in the specified target container in order to satisfy the constraints of the VerticalGridLayout object.

The grid layout manager determines the size of individual components by dividing the free space in the container into equal-sized portions according to the number of rows and columns in the layout. The container's free space equals the container's size minus any insets and any specified horizontal or vertical gap. All components in a grid layout are given the same size. @param parent the container in which to do the layout @see java.awt.Container @see java.awt.Container#doLayout * /** * * Lays out the specified container using this layout. * *

* * This method reshapes the components in the specified target * * container in order to satisfy the constraints of the * * VerticalGridLayout object. * *

* * The grid layout manager determines the size of individual * * components by dividing the free space in the container into * * equal-sized portions according to the number of rows and columns * * in the layout. The container's free space equals the container's * * size minus any insets and any specified horizontal or vertical * * gap. All components in a grid layout are given the same size. * * * * @param parent the container in which to do the layout * * @see java.awt.Container * * @see java.awt.Container#doLayout * */ * public void layoutContainer(Container parent) { * synchronized (parent.getTreeLock()) { * Insets insets = parent.getInsets(); * int ncomponents = parent.getComponentCount(); ---- /home/edmund/database-mana/databaseGitHub/mdrill/trunk/adhoc-internal/src/main/java/org/jfree/layout/LCBLayout.java: 175-184 Length: 4 local sim: [[parent]] global sim: [[]] Lays out the components. @param parent the parent. < /** < * Lays out the components. < * < * @param parent the parent. < */ < public void layoutContainer(final Container parent) { < < synchronized (parent.getTreeLock()) { < final Insets insets = parent.getInsets(); < final int ncomponents = parent.getComponentCount(); ---- Comments (size 1): 1. Lays out the components. @param parent the parent. ---- Match Group 29 of size 1+1 ---- Ranked Result: ---- Match Group 30 of size 1+1 ---- Ranked Result: ---- Match Group 31 of size 1+2 ---- Ranked Result: ---- Match Group 32 of size 1+1 ---- Ranked Result: ---- Match Group 33 of size 1+1 ---- Ranked Result: ---- Match Group 34 of size 1+1 ---- Ranked Result: ---- Match Group 35 of size 1+1 ---- Ranked Result: ---- Match Group 36 of size 1+1 ---- Ranked Result: ---- Match Group 37 of size 1+1 ---- Ranked Result: ---- Number of internal clones: 1.0 median, 1.0 average, 6 total. Number of external clones: 1.5 median, 1.8333333333333333 average, 11 total. InternalMap: {1=6} ExternalMap: {1=3, 2=1, 3=2} 6 comment groups has a comment Elapsed for 5 minutes Finish @ 05:06:12 AM graceful exit...