aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/graphics/imageelement.js
diff options
context:
space:
mode:
Diffstat (limited to 'contexts/data/lib/closure-library/closure/goog/graphics/imageelement.js')
-rw-r--r--contexts/data/lib/closure-library/closure/goog/graphics/imageelement.js67
1 files changed, 0 insertions, 67 deletions
diff --git a/contexts/data/lib/closure-library/closure/goog/graphics/imageelement.js b/contexts/data/lib/closure-library/closure/goog/graphics/imageelement.js
deleted file mode 100644
index 7489ee9..0000000
--- a/contexts/data/lib/closure-library/closure/goog/graphics/imageelement.js
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright 2007 The Closure Library Authors. All Rights Reserved.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS-IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-
-/**
- * @fileoverview A thin wrapper around the DOM element for images.
- */
-
-
-goog.provide('goog.graphics.ImageElement');
-
-goog.require('goog.graphics.Element');
-
-
-
-/**
- * Interface for a graphics image element.
- * You should not construct objects from this constructor. Instead,
- * you should use {@code goog.graphics.Graphics.drawImage} and it
- * will return an implementation of this interface for you.
- *
- * @param {Element} element The DOM element to wrap.
- * @param {goog.graphics.AbstractGraphics} graphics The graphics creating
- * this element.
- * @constructor
- * @extends {goog.graphics.Element}
- */
-goog.graphics.ImageElement = function(element, graphics) {
- goog.graphics.Element.call(this, element, graphics);
-};
-goog.inherits(goog.graphics.ImageElement, goog.graphics.Element);
-
-
-/**
- * Update the position of the image.
- *
- * @param {number} x X coordinate (left).
- * @param {number} y Y coordinate (top).
- */
-goog.graphics.ImageElement.prototype.setPosition = goog.abstractMethod;
-
-
-/**
- * Update the size of the image.
- *
- * @param {number} width Width of image.
- * @param {number} height Height of image.
- */
-goog.graphics.ImageElement.prototype.setSize = goog.abstractMethod;
-
-
-/**
- * Update the source of the image.
- * @param {string} src Source of the image.
- */
-goog.graphics.ImageElement.prototype.setSource = goog.abstractMethod;