Lines Matching defs:target

393      * <i>visible</i> components in the specified target container.
395 * @param target the container that needs to be laid out
402 public Dimension preferredLayoutSize(Container target) {
403 synchronized (target.getTreeLock()) {
405 int nmembers = target.getComponentCount();
412 Component m = target.getComponent(i);
434 Insets insets = target.getInsets();
443 * components contained in the specified target container.
444 * @param target the container that needs to be laid out
451 public Dimension minimumLayoutSize(Container target) {
452 synchronized (target.getTreeLock()) {
455 int nmembers = target.getComponentCount();
461 Component m = target.getComponent(i);
486 Insets insets = target.getInsets();
500 * @param target the component which needs to be moved
514 private int moveComponents(Container target, int x, int y, int width, int height,
540 Component m = target.getComponent(i);
556 Component m = target.getComponent(i);
568 m.setLocation(target.width - x - m.width, cy);
580 * target container in order to satisfy the alignment of
583 * @param target the specified component being laid out
587 public void layoutContainer(Container target) {
588 synchronized (target.getTreeLock()) {
589 Insets insets = target.getInsets();
590 int maxwidth = target.width - (insets.left + insets.right + hgap*2);
591 int nmembers = target.getComponentCount();
595 boolean ltr = target.getComponentOrientation().isLeftToRight();
607 Component m = target.getComponent(i);
629 rowh = moveComponents(target, insets.left + hgap, y,
639 moveComponents(target, insets.left + hgap, y, maxwidth - x, rowh,