Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import javax.swing.JTextField;

public class Main {
    public static void main(String[] argv) {
        JTextField textfield = new JTextField("Initial Text");

        // Left-justify the text
        textfield.setHorizontalAlignment(JTextField.LEFT);

        // Center the text
        textfield.setHorizontalAlignment(JTextField.CENTER);

        // Right-justify the text
        textfield.setHorizontalAlignment(JTextField.RIGHT);

    }
}