Java Code Examples for java.awt.peer.LabelPeer#setAlignment()

The following examples show how to use java.awt.peer.LabelPeer#setAlignment() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Label.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 2
Source File: Label.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 3
Source File: Label.java    From jdk-1.7-annotated with Apache License 2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 4
Source File: Label.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 5
Source File: Label.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 6
Source File: Label.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 7
Source File: Label.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 8
Source File: Label.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 9
Source File: Label.java    From Java8CN with Apache License 2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 10
Source File: Label.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 11
Source File: Label.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are {@code Label.LEFT},
 * {@code Label.RIGHT}, and {@code Label.CENTER}.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          {@code alignment} is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 12
Source File: Label.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are {@code Label.LEFT},
 * {@code Label.RIGHT}, and {@code Label.CENTER}.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          {@code alignment} is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 13
Source File: Label.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 14
Source File: Label.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 15
Source File: Label.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 16
Source File: Label.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 17
Source File: Label.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}
 
Example 18
Source File: Label.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Sets the alignment for this label to the specified alignment.
 * Possible values are <code>Label.LEFT</code>,
 * <code>Label.RIGHT</code>, and <code>Label.CENTER</code>.
 * @param      alignment    the alignment to be set.
 * @exception  IllegalArgumentException if an improper value for
 *                          <code>alignment</code> is given.
 * @see        java.awt.Label#getAlignment
 */
public synchronized void setAlignment(int alignment) {
    switch (alignment) {
      case LEFT:
      case CENTER:
      case RIGHT:
        this.alignment = alignment;
        LabelPeer peer = (LabelPeer)this.peer;
        if (peer != null) {
            peer.setAlignment(alignment);
        }
        return;
    }
    throw new IllegalArgumentException("improper alignment: " + alignment);
}