Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.TreeMap;

public class Main {
    private static TreeMap<String, String> pathMap;

    public static void addSystemPath(String key, String value) {
        if (pathMap == null)
            pathMap = new TreeMap<String, String>();
        pathMap.put(key, value);
    }
}