com.esri.arcgis.geoprocessing
Interface IGPXYDomain

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
GPSpatialReference, GPXYDomain, IGPXYDomainProxy

public interface IGPXYDomain
extends java.io.Serializable

COM Interface 'IGPXYDomain'. Generated 3/19/2015 1:20:58 PM from 'C:\ArcGIS\COM\esriGeoprocessing.olb'

Description: 'Provides access to the properties/methods of a geoprocessing xy domain object.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IIDda17857c_b50a_47ef_bd28_0fd2b88ba7c8
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void getDomain(double[] xMin, double[] xMax, double[] yMin, double[] yMax)
          Get the xy domain extent.
 IEnvelope getExtent()
          Get the extent of the xy domain.
 void getFalseOriginAndUnits(double[] falseX, double[] falseY, double[] xyUnits)
          Get the false origin and units.
 ISpatialReference getSpatialReference()
          Get the spatial reference of the xy domain.
 void setDomain(double xMin, double xMax, double yMin, double yMax)
          Set the xy domain extent.
 void setDomainFromExtent(IEnvelope pExtent)
          Set the xy domain from an extent.
 void setDomainFromSpatialReference(ISpatialReference pSpRef)
          Set the xy domain from a spatial reference.
 void setFalseOriginAndUnits(double falseX, double falseY, double xyUnits)
          Set the false origin and units.
 

Field Detail

IIDda17857c_b50a_47ef_bd28_0fd2b88ba7c8

static final int IIDda17857c_b50a_47ef_bd28_0fd2b88ba7c8
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

setDomain

void setDomain(double xMin,
               double xMax,
               double yMin,
               double yMax)
               throws java.io.IOException,
                      AutomationException
Set the xy domain extent.

Parameters:
xMin - The xMin (in)
xMax - The xMax (in)
yMin - The yMin (in)
yMax - The yMax (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getDomain

void getDomain(double[] xMin,
               double[] xMax,
               double[] yMin,
               double[] yMax)
               throws java.io.IOException,
                      AutomationException
Get the xy domain extent.

Parameters:
xMin - The xMin (out: use single element array)
xMax - The xMax (out: use single element array)
yMin - The yMin (out: use single element array)
yMax - The yMax (out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setFalseOriginAndUnits

void setFalseOriginAndUnits(double falseX,
                            double falseY,
                            double xyUnits)
                            throws java.io.IOException,
                                   AutomationException
Set the false origin and units.

Parameters:
falseX - The falseX (in)
falseY - The falseY (in)
xyUnits - The xyUnits (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getFalseOriginAndUnits

void getFalseOriginAndUnits(double[] falseX,
                            double[] falseY,
                            double[] xyUnits)
                            throws java.io.IOException,
                                   AutomationException
Get the false origin and units.

Parameters:
falseX - The falseX (out: use single element array)
falseY - The falseY (out: use single element array)
xyUnits - The xyUnits (out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setDomainFromSpatialReference

void setDomainFromSpatialReference(ISpatialReference pSpRef)
                                   throws java.io.IOException,
                                          AutomationException
Set the xy domain from a spatial reference.

Parameters:
pSpRef - A reference to a com.esri.arcgis.geometry.ISpatialReference (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setDomainFromExtent

void setDomainFromExtent(IEnvelope pExtent)
                         throws java.io.IOException,
                                AutomationException
Set the xy domain from an extent.

Parameters:
pExtent - A reference to a com.esri.arcgis.geometry.IEnvelope (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getExtent

IEnvelope getExtent()
                    throws java.io.IOException,
                           AutomationException
Get the extent of the xy domain.

Returns:
A reference to a com.esri.arcgis.geometry.IEnvelope
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getSpatialReference

ISpatialReference getSpatialReference()
                                      throws java.io.IOException,
                                             AutomationException
Get the spatial reference of the xy domain.

Returns:
A reference to a com.esri.arcgis.geometry.ISpatialReference
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.