summaryrefslogtreecommitdiff
path: root/src/js/shape/mxStencilRegistry.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/shape/mxStencilRegistry.js')
-rw-r--r--src/js/shape/mxStencilRegistry.js53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/js/shape/mxStencilRegistry.js b/src/js/shape/mxStencilRegistry.js
deleted file mode 100644
index 7621573..0000000
--- a/src/js/shape/mxStencilRegistry.js
+++ /dev/null
@@ -1,53 +0,0 @@
-/**
- * $Id: mxStencilRegistry.js,v 1.2 2011-07-15 12:57:50 gaudenz Exp $
- * Copyright (c) 2006-2010, JGraph Ltd
- *
- * Code to add stencils.
- *
- * (code)
- * var req = mxUtils.load('test/stencils.xml');
- * var root = req.getDocumentElement();
- * var shape = root.firstChild;
- *
- * while (shape != null)
- * {
- * if (shape.nodeType == mxConstants.NODETYPE_ELEMENT)
- * {
- * mxStencilRegistry.addStencil(shape.getAttribute('name'), new mxStencil(shape));
- * }
- *
- * shape = shape.nextSibling;
- * }
- * (end)
- */
-var mxStencilRegistry =
-{
- /**
- * Class: mxStencilRegistry
- *
- * A singleton class that provides a registry for stencils and the methods
- * for painting those stencils onto a canvas or into a DOM.
- */
- stencils: [],
-
- /**
- * Function: addStencil
- *
- * Adds the given <mxStencil>.
- */
- addStencil: function(name, stencil)
- {
- mxStencilRegistry.stencils[name] = stencil;
- },
-
- /**
- * Function: getStencil
- *
- * Returns the <mxStencil> for the given name.
- */
- getStencil: function(name)
- {
- return mxStencilRegistry.stencils[name];
- }
-
-};