|
Last change
on this file since 5077 was 4256, checked in by bastiK, 14 years ago |
|
see #6560 - basic svg support, includes kitfox svgsalamander, r 98, patched
|
|
File size:
532 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * SVGUniverseSingleton.java
|
|---|
| 3 | *
|
|---|
| 4 | * Created on April 2, 2005, 1:54 AM
|
|---|
| 5 | */
|
|---|
| 6 |
|
|---|
| 7 | package com.kitfox.svg;
|
|---|
| 8 |
|
|---|
| 9 | /**
|
|---|
| 10 | * A convienience singleton for allowing all classes to access a common SVG universe.
|
|---|
| 11 | *
|
|---|
| 12 | * @author kitfox
|
|---|
| 13 | */
|
|---|
| 14 | public class SVGCache
|
|---|
| 15 | {
|
|---|
| 16 | private static final SVGUniverse svgUniverse = new SVGUniverse();
|
|---|
| 17 |
|
|---|
| 18 | /** Creates a new instance of SVGUniverseSingleton */
|
|---|
| 19 | private SVGCache()
|
|---|
| 20 | {
|
|---|
| 21 | }
|
|---|
| 22 |
|
|---|
| 23 | public static SVGUniverse getSVGUniverse()
|
|---|
| 24 | {
|
|---|
| 25 | return svgUniverse;
|
|---|
| 26 | }
|
|---|
| 27 |
|
|---|
| 28 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.