Lines Matching refs:target
72 * contained in the specified target container.
73 * @param target the Container on which to do the layout
77 public Dimension minimumLayoutSize(Container target) {
80 for (int i = 0; i < target.countComponents(); i++) {
81 Component comp = target.getComponent(i);
89 Insets insets = target.insets();
98 * in the specified target container.
99 * @param target the component which needs to be laid out
103 public Dimension preferredLayoutSize(Container target) {
106 for (int i = 0; i < target.countComponents(); i++) {
107 Component comp = target.getComponent(i);
115 Insets insets = target.insets();
124 * components in the specified target container in order to satisfy the
126 * @param target the component being laid out
129 public void layoutContainer(Container target) {
130 Insets insets = target.insets();
132 int bottom = target.size().height - insets.bottom;
134 int right = target.size().width - insets.right;
136 for (int i = 0; i < target.countComponents(); i++) {
137 Component comp = target.getComponent(i);