Index: trunk/src/com/kitfox/svg/ImageSVG.java
===================================================================
--- trunk/src/com/kitfox/svg/ImageSVG.java	(revision 8084)
+++ trunk/src/com/kitfox/svg/ImageSVG.java	(revision 11525)
@@ -77,4 +77,5 @@
     }
 
+    @Override
     public String getTagName()
     {
@@ -82,4 +83,5 @@
     }
 
+    @Override
     protected void build() throws SVGException
     {
@@ -185,5 +187,6 @@
     }
 
-    void pick(Point2D point, boolean boundingBox, List retVec) throws SVGException
+    @Override
+    void pick(Point2D point, boolean boundingBox, List<List<SVGElement>> retVec) throws SVGException
     {
         if (getBoundingBox().contains(point))
@@ -193,5 +196,6 @@
     }
 
-    void pick(Rectangle2D pickArea, AffineTransform ltw, boolean boundingBox, List retVec) throws SVGException
+    @Override
+    void pick(Rectangle2D pickArea, AffineTransform ltw, boolean boundingBox, List<List<SVGElement>> retVec) throws SVGException
     {
         if (ltw.createTransformedShape(getBoundingBox()).intersects(pickArea))
@@ -201,4 +205,5 @@
     }
 
+    @Override
     public void render(Graphics2D g) throws SVGException
     {
@@ -262,4 +267,5 @@
     }
 
+    @Override
     public Rectangle2D getBoundingBox()
     {
@@ -274,4 +280,5 @@
      * update
      */
+    @Override
     public boolean updateTime(double curTime) throws SVGException
     {
