Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: LGPL 

import java.util.GregorianCalendar;

public class Main {
    public static GregorianCalendar createGregorianCalendar(int _year, int _month, int _day) {
        return new GregorianCalendar(_year, _month - 1, _day);
    }
}