12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- goog.provide('goog.graphics.GroupElement');
- goog.require('goog.graphics.Element');
- goog.graphics.GroupElement = function(element, graphics) {
- goog.graphics.Element.call(this, element, graphics);
- };
- goog.inherits(goog.graphics.GroupElement, goog.graphics.Element);
- goog.graphics.GroupElement.prototype.clear = goog.abstractMethod;
- goog.graphics.GroupElement.prototype.setSize = goog.abstractMethod;
|