com.esri.adf.web.tasks
Class MapToolsTaskConfig

java.lang.Object
  extended by com.esri.adf.web.tasks.MapToolsTaskConfig
All Implemented Interfaces:
Serializable

Deprecated. This class is deprecated as of ArcGIS Java Server 9.3, instead use MapToolsTask

@Deprecated
public class MapToolsTaskConfig
extends Object
implements Serializable

Configures the properties of MapToolsTask.

See Also:
Serialized Form

Field Summary
protected  int layerId
          Deprecated.  
protected  boolean panAction
          Deprecated.  
protected  String tools
          Deprecated.  
 
Constructor Summary
MapToolsTaskConfig()
          Deprecated.  
 
Method Summary
 int getLayerId()
          Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.getIdentifiableLayers()
 GISResource getResource()
          Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.getIdentifiableLayers()
 String getTools()
          Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.getTools()
 boolean isMapContinousPan()
          Deprecated. As of ArcGIS Java Server 9.2 SP2, instead use MapToolsTask.isMapContinuousPan()
 boolean isMapContinuousPan()
          Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.isMapContinuousPan()
 void setLayerId(int layerId)
          Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.setIdentifiableLayers(java.util.Map)
 void setMapContinousPan(boolean pan)
          Deprecated. As of ArcGIS Java Server 9.2 SP2, instead use MapToolsTask.setMapContinuousPan(boolean)
 void setMapContinuousPan(boolean panAction)
          Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.setMapContinuousPan(boolean)
 void setResource(GISResource resource)
          Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.setIdentifiableLayers(java.util.Map)
 void setTools(String tools)
          Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.setTools(String)
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

panAction

protected boolean panAction
Deprecated. 

tools

protected String tools
Deprecated. 

layerId

protected int layerId
Deprecated. 
Constructor Detail

MapToolsTaskConfig

public MapToolsTaskConfig()
Deprecated. 
Method Detail

setMapContinuousPan

@Deprecated
public void setMapContinuousPan(boolean panAction)
Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.setMapContinuousPan(boolean)


isMapContinuousPan

@Deprecated
public boolean isMapContinuousPan()
Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.isMapContinuousPan()


setTools

@Deprecated
public void setTools(String tools)
Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.setTools(String)

Sets the tools order and their visibilities of a map tools task.

   For example setting to "IDENTIFY,ZOOMIN,ZOOMOUT," will display three tools in the map tools task.
     config.setTools(MapToolsTask.TOOL_ZOOMIN + "," + MapToolsTask.TOOL_ZOOMOUT);
 

Parameters:
tools - a String with multi tool key word separated by a comma.

getTools

@Deprecated
public String getTools()
Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.getTools()

Returns the tool key(s) separated by comma

Returns:
the tool key(s) string value

setLayerId

@Deprecated
public void setLayerId(int layerId)
Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.setIdentifiableLayers(java.util.Map)

Sets the layer id of a GISResource object in which the identify should be performed. By default identify works with all resource(s) and all layer(s).

Parameters:
layerId - the layer id

getLayerId

@Deprecated
public int getLayerId()
Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.getIdentifiableLayers()

Returns the layer id.

Returns:
the layer id

setResource

@Deprecated
public void setResource(GISResource resource)
Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.setIdentifiableLayers(java.util.Map)

Set the GISResource object in which the identify should be performed.

Parameters:
resource - the GISResource object.

getResource

@Deprecated
public GISResource getResource()
Deprecated. As of ArcGIS Java Server 9.3, instead use MapToolsTask.getIdentifiableLayers()

Returns the GISResource object.

Returns:
the GISResource object.

setMapContinousPan

@Deprecated
public void setMapContinousPan(boolean pan)
Deprecated. As of ArcGIS Java Server 9.2 SP2, instead use MapToolsTask.setMapContinuousPan(boolean)


isMapContinousPan

@Deprecated
public boolean isMapContinousPan()
Deprecated. As of ArcGIS Java Server 9.2 SP2, instead use MapToolsTask.isMapContinuousPan()