Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import javax.swing.JLabel;

import javax.swing.SwingConstants;

public class Main {
    public static JLabel newJLabel(String label) {
        JLabel ret = new JLabel(label);
        ret.setHorizontalAlignment(SwingConstants.RIGHT);
        return ret;
    }
}