*/
@Override
public boolean removeObjectVariable(String strId) throws Exception
{
boolean blnGotIt = false;
LayerList llt = super._cnv.getModel().getLayers();
for (Layer lyrCur: llt)
{
if (! (lyrCur instanceof GfrLyrWMSTiledImageLayer))
continue;
GfrLyrWMSTiledImageLayer rlrCur = (GfrLyrWMSTiledImageLayer) lyrCur;
String strIdCurParent = rlrCur.getIdParent();
if (strIdCurParent.compareTo(strId) != 0)
continue;
llt.remove(lyrCur);
rlrCur.dispose();
blnGotIt = true;
}
return blnGotIt;