001 /*
002 * SVGUniverseSingleton.java
003 *
004 * Created on April 2, 2005, 1:54 AM
005 */
006
007 package com.kitfox.svg;
008
009 /**
010 * A convienience singleton for allowing all classes to access a common SVG universe.
011 *
012 * @author kitfox
013 */
014 public class SVGCache
015 {
016 private static final SVGUniverse svgUniverse = new SVGUniverse();
017
018 /** Creates a new instance of SVGUniverseSingleton */
019 private SVGCache()
020 {
021 }
022
023 public static SVGUniverse getSVGUniverse()
024 {
025 return svgUniverse;
026 }
027
028 }