summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/svg/SVGCache.java
blob: 13fa1ec5847f6f3a35eb9955742be0c294bcb1c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * SVGUniverseSingleton.java
 *
 * Created on April 2, 2005, 1:54 AM
 */

package com.kitfox.svg;

/**
 * A convienience singleton for allowing all classes to access a common SVG universe.
 *
 * @author kitfox
 */
public class SVGCache
{
    private static final SVGUniverse svgUniverse = new SVGUniverse();
    
    /** Creates a new instance of SVGUniverseSingleton */
    private SVGCache()
    {
    }

    public static SVGUniverse getSVGUniverse()
    {
        return svgUniverse;
    }
    
}