genericize
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@553 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
@@ -103,7 +103,7 @@ public class StageScene extends SceneImpl
|
|||||||
/**
|
/**
|
||||||
* Iterates over all of the interesting objects in this scene.
|
* Iterates over all of the interesting objects in this scene.
|
||||||
*/
|
*/
|
||||||
public Iterator enumerateObjects ()
|
public Iterator<ObjectInfo> enumerateObjects ()
|
||||||
{
|
{
|
||||||
return _objects.iterator();
|
return _objects.iterator();
|
||||||
}
|
}
|
||||||
@@ -174,7 +174,7 @@ public class StageScene extends SceneImpl
|
|||||||
}
|
}
|
||||||
|
|
||||||
// documentation inherited from interface
|
// documentation inherited from interface
|
||||||
public Iterator getPortals ()
|
public Iterator<Portal> getPortals ()
|
||||||
{
|
{
|
||||||
return _sdelegate.getPortals();
|
return _sdelegate.getPortals();
|
||||||
}
|
}
|
||||||
@@ -225,5 +225,5 @@ public class StageScene extends SceneImpl
|
|||||||
protected SpotSceneImpl _sdelegate;
|
protected SpotSceneImpl _sdelegate;
|
||||||
|
|
||||||
/** A list of all interesting scene objects. */
|
/** A list of all interesting scene objects. */
|
||||||
protected ArrayList _objects = new ArrayList();
|
protected ArrayList<ObjectInfo> _objects = new ArrayList<ObjectInfo>();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user