Lines Matching defs:target

544      * based on the target <code>Container</code>'s component orientation.
555 * @param target the {@code Container} used to obtain
556 * the constraint location based on the target
562 * @exception NullPointerException if the target parameter is null
566 public Component getLayoutComponent(Container target, Object constraints) {
567 boolean ltr = target.getComponentOrientation().isLeftToRight();
632 * Determines the minimum size of the <code>target</code> container
638 * @param target the container in which to do the layout.
645 public Dimension minimumLayoutSize(Container target) {
646 synchronized (target.getTreeLock()) {
649 boolean ltr = target.getComponentOrientation().isLeftToRight();
678 Insets insets = target.getInsets();
687 * Determines the preferred size of the <code>target</code>
694 * @param target the container in which to do the layout.
701 public Dimension preferredLayoutSize(Container target) {
702 synchronized (target.getTreeLock()) {
705 boolean ltr = target.getComponentOrientation().isLeftToRight();
734 Insets insets = target.getInsets();
744 * in the specified target container.
745 * @param target the component which needs to be laid out
750 public Dimension maximumLayoutSize(Container target) {
780 public void invalidateLayout(Container target) {
798 * @param target the container in which to do the layout.
802 public void layoutContainer(Container target) {
803 synchronized (target.getTreeLock()) {
804 Insets insets = target.getInsets();
806 int bottom = target.height - insets.bottom;
808 int right = target.width - insets.right;
810 boolean ltr = target.getComponentOrientation().isLeftToRight();