Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.ArrayList;

import java.util.List;

public class Main {
    public static List<String> GetMonthList() {
        List<String> monthList = new ArrayList<String>();

        for (int i = 0; i < 12; i++) {
            monthList.add(Integer.toString(i + 1));
        }

        return monthList;
    }
}