Showing posts with label DesignPatterns. Show all posts
Showing posts with label DesignPatterns. Show all posts

Tuesday, 28 July 2015

SingleTon Design Pattern


public class Runtime
{

    public static Runtime getRuntime()
    {
        return currentRuntime;
    }


    private Runtime()
    {
    }

    private static Runtime currentRuntime = new Runtime();

}