Package java.awt

Examples of java.awt.Label$AccessibleAWTLabel


     * @return java.awt.Label
     */
    private Label getProjectText() {
        if (iProjectText == null) {
            try {
                iProjectText = new Label();
                iProjectText.setName("ProjectText");
                iProjectText.setText(" ");
            } catch (Throwable iExc) {
                handleException(iExc);
            }
View Full Code Here


     * @return java.awt.Label
     */
    private Label getTargetLabel() {
        if (iTargetLabel == null) {
            try {
                iTargetLabel = new Label();
                iTargetLabel.setName("TargetLabel");
                iTargetLabel.setText("Target:");
                iTargetLabel.setEnabled(true);
            } catch (Throwable iExc) {
                handleException(iExc);
View Full Code Here

        setLocation(x, y);
        user.requestFocus();
    }

    private void createInstructionLabel() {
        instructionLabel = new Label("Please enter your user name and password.");
        add(instructionLabel, BorderLayout.NORTH);
    }
View Full Code Here

        // AWTUtilities.addWindowIcon(this, "shutdown-logo.gif");

        setLayout(new GridLayout(2, 3, 10, 10));

        add(new Label("Exit Apache Isis?", Label.LEFT));

        add(new Panel());
        add(new Panel());
        add(new Panel());
View Full Code Here

    txtField = new TextField();
    txtField.setBounds(100, 392, 400, 30);
    mainFrame.add(txtField);

    csLabel = new Label("Send:");
    csLabel.setBounds(12, 392, 85, 30);
    mainFrame.add(csLabel);

    leaveButton = new JButton("Leave");
    leaveButton.setBounds(12, 428, 150, 30);
View Full Code Here

         addNotify();
         addWindowListener(new Close());
         setLayout(new BorderLayout());

         Panel p = new Panel(new GridLayout(3, 1));
         p.add(line1 = new Label());
         p.add(line2 = new Label());
         p.add(line3 = new Label());
         add("North", p);

         p = new Panel(new GridLayout(2, 1));
         p.add(new Label("Username:"));
         p.add(new Label("Password:"));
         add("West", p);
         p = new Panel(new GridLayout(2, 1));
         p.add(user = new TextField(30));
         p.add(pass = new TextField(30));
         pass.addActionListener(new Ok());
View Full Code Here

     * @return java.awt.Label
     */
    private Label getAboutContactLabel() {
        if (iAboutContactLabel == null) {
            try {
                iAboutContactLabel = new Label();
                iAboutContactLabel.setName("AboutContactLabel");
                iAboutContactLabel.setAlignment(java.awt.Label.CENTER);
                iAboutContactLabel.setText("contact: wolf.siberski@tui.de or "
                    + "christoph.wilhelms@tui.de");
            } catch (Throwable iExc) {
View Full Code Here

     * @return java.awt.Label
     */
    private Label getAboutDevLabel() {
        if (iAboutDevLabel == null) {
            try {
                iAboutDevLabel = new Label();
                iAboutDevLabel.setName("AboutDevLabel");
                iAboutDevLabel.setAlignment(java.awt.Label.CENTER);
                iAboutDevLabel.setText("developed by Wolf Siberski & Christoph Wilhelms");
            } catch (Throwable iExc) {
                handleException(iExc);
View Full Code Here

     * @return java.awt.Label
     */
    private Label getAboutTitleLabel() {
        if (iAboutTitleLabel == null) {
            try {
                iAboutTitleLabel = new Label();
                iAboutTitleLabel.setName("AboutTitleLabel");
                iAboutTitleLabel.setFont(new Font("Arial", 1, 12));
                iAboutTitleLabel.setAlignment(Label.CENTER);
                iAboutTitleLabel.setText("Ant VisualAge for Java Tool-Integration");
            } catch (Throwable iExc) {
View Full Code Here

     * @return java.awt.Label
     */
    private Label getBuildFileLabel() {
        if (iBuildFileLabel == null) {
            try {
                iBuildFileLabel = new Label();
                iBuildFileLabel.setName("BuildFileLabel");
                iBuildFileLabel.setText("Ant-Buildfile:");
            } catch (Throwable iExc) {
                handleException(iExc);
            }
View Full Code Here

TOP

Related Classes of java.awt.Label$AccessibleAWTLabel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.