Lines Matching defs:target

152      * a line of text as determined by the target container's
159 * lines flow across a page as determined by the target container's
168 * @param target the container that needs to be laid out
177 @ConstructorProperties({"target", "axis"})
178 public BoxLayout(Container target, int axis) {
184 this.target = target;
191 * @param target the container that needs to be laid out
201 BoxLayout(Container target, int axis, PrintStream dbg) {
202 this(target, axis);
214 return this.target;
242 * @param target the affected container
244 * @exception AWTError if the target isn't the container specified to the
247 public synchronized void invalidateLayout(Container target) {
248 checkContainer(target);
286 * in the specified target container.
288 * @param target the container that needs to be laid out
290 * @exception AWTError if the target isn't the container specified to the
296 public Dimension preferredLayoutSize(Container target) {
299 checkContainer(target);
304 Insets insets = target.getInsets();
312 * contained in the specified target container.
314 * @param target the container that needs to be laid out
316 * @exception AWTError if the target isn't the container specified to the
321 public Dimension minimumLayoutSize(Container target) {
324 checkContainer(target);
329 Insets insets = target.getInsets();
336 * Returns the maximum dimensions the target container can use
339 * @param target the container that needs to be laid out
341 * @exception AWTError if the target isn't the container specified to the
346 public Dimension maximumLayoutSize(Container target) {
349 checkContainer(target);
354 Insets insets = target.getInsets();
366 * @param target the container
368 * @exception AWTError if the target isn't the container specified to the
371 public synchronized float getLayoutAlignmentX(Container target) {
372 checkContainer(target);
383 * @param target the container
385 * @exception AWTError if the target isn't the container specified to the
388 public synchronized float getLayoutAlignmentY(Container target) {
389 checkContainer(target);
398 * @param target the container to lay out
400 * @exception AWTError if the target isn't the container specified to the
403 public void layoutContainer(Container target) {
404 checkContainer(target);
405 int nChildren = target.getComponentCount();
411 Dimension alloc = target.getSize();
412 Insets in = target.getInsets();
417 ComponentOrientation o = target.getComponentOrientation();
445 Component c = target.getComponent(i);
453 Component c = target.getComponent(i);
462 void checkContainer(Container target) {
463 if (this.target != target) {
472 int n = target.getComponentCount();
476 Component c = target.getComponent(i);
494 int absoluteAxis = resolveAxis(axis,target.getComponentOrientation());
509 * to their absolute couterpart given the target's ComponentOrientation
530 private Container target;