com.esri.aims.mtier.model.workspace
Class ImageWorkspace

java.lang.Object
  extended by com.esri.aims.mtier.model.workspace.ImageWorkspace
All Implemented Interfaces:
Serializable

public class ImageWorkspace
extends Object
implements Serializable

The ImageWorkspace object specifies a workspace for image files.

See Also:
Serialized Form

Constructor Summary
ImageWorkspace()
          Constructs an instance of a ImageWorkspace object.
 
Method Summary
 String getDirectory()
          Returns the ImageWorkspace objects directory value.
 String getName()
          Returns the ImageWorkspace object's name value.
 void setDirectory(String directory)
          Sets the ImageWorkspace object's working directory.
 void setName(String name)
          Sets the ImageWorkspace object's name value.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ImageWorkspace

public ImageWorkspace()
Constructs an instance of a ImageWorkspace object. Example:
ImageWorkspace imageWorkspace = new ImageWorkspace();

Method Detail

setName

public void setName(String name)
Sets the ImageWorkspace object's name value. Example:
imageWorkspace.setName("iworkspace");

Parameters:
name - the name value.
See Also:
getName()

setDirectory

public void setDirectory(String directory)
Sets the ImageWorkspace object's working directory. Example: >
imageWorkspace.setDirectory("C:/ArcIMS/Images/Data");

Parameters:
directory - the directory location of the image.
See Also:
getDirectory()

getName

public String getName()
Returns the ImageWorkspace object's name value. Example:
String name = imageWorkspace.getName();

Returns:
String
See Also:
setName(java.lang.String)

getDirectory

public String getDirectory()
Returns the ImageWorkspace objects directory value. Example:
String directory = imageWorkspace.getDirectory();

Returns:
String
See Also:
setDirectory(java.lang.String)