Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import java.awt.Component;

import javax.swing.JLabel;

public class Main {
    static Component newLabel(String text) {
        return new JLabel(text);
    }
}