Source: core/drawing/shape/shape.js

  1. /**
  2. * @fileoverview A static class providing enumerations
  3. * for the shape classes.
  4. */
  5. goog.provide('xrx.shape');
  6. /**
  7. * A static class providing enumerations for the shape classes.
  8. * @constructor
  9. * @namespace xrx.shape
  10. * @memberof xrx
  11. */
  12. xrx.shape = function() {};
  13. /**
  14. * Events thrown by the shape classes.
  15. * @type {string}
  16. * @private
  17. */
  18. xrx.shape.EventType = {
  19. SHAPE_BEFORE_DRAW: 'eventShapeBeforeDraw'
  20. };