com.esri.arcgis.system
Interface IInputDeviceManager

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
IInputDeviceManagerProxy, InputDeviceManager

public interface IInputDeviceManager
extends java.io.Serializable

COM Interface 'IInputDeviceManager'. Generated 3/19/2015 1:21:00 PM from 'C:\ArcGIS\COM\esriSystem.olb'

Description: 'Provides access to members that give life to Input Devices.' 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 IID52620d38_e275_4725_a976_65bcdd2c93fd
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void addDevice(IUID pDeviceCLSID, java.lang.Object initializationData)
          Creates a single device given the CLSID, then passes initializationData to IInputDevice::Startup.
 IExtension findDevice(java.lang.Object nameOrID)
          Finds the input device by CLSID (IUID) or name (String).
 IExtension getDevice(int index)
          The input device at the specified index.
 IUID getDeviceCLSID(int index)
          The CLSID of the input device at the specified index.
 int getDeviceCount()
          The number of input devices loaded in the application.
 void shutdownDevices()
          Shuts down and releases the extensions that are loaded and calls IExtension::Shutdown.
 void startupDevices(java.lang.Object initializationData)
          Creates and starts the devices for Inut Device component category, passing initializationData to each in IInputDevice::Startup.
 

Field Detail

IID52620d38_e275_4725_a976_65bcdd2c93fd

static final int IID52620d38_e275_4725_a976_65bcdd2c93fd
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

startupDevices

void startupDevices(java.lang.Object initializationData)
                    throws java.io.IOException,
                           AutomationException
Creates and starts the devices for Inut Device component category, passing initializationData to each in IInputDevice::Startup.

Parameters:
initializationData - A Variant (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

shutdownDevices

void shutdownDevices()
                     throws java.io.IOException,
                            AutomationException
Shuts down and releases the extensions that are loaded and calls IExtension::Shutdown.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

addDevice

void addDevice(IUID pDeviceCLSID,
               java.lang.Object initializationData)
               throws java.io.IOException,
                      AutomationException
Creates a single device given the CLSID, then passes initializationData to IInputDevice::Startup.

Parameters:
pDeviceCLSID - A reference to a com.esri.arcgis.system.IUID (in)
initializationData - A Variant (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getDeviceCount

int getDeviceCount()
                   throws java.io.IOException,
                          AutomationException
The number of input devices loaded in the application.

Returns:
The count
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getDevice

IExtension getDevice(int index)
                     throws java.io.IOException,
                            AutomationException
The input device at the specified index.

Parameters:
index - The index (in)
Returns:
A reference to a com.esri.arcgis.system.IExtension
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getDeviceCLSID

IUID getDeviceCLSID(int index)
                    throws java.io.IOException,
                           AutomationException
The CLSID of the input device at the specified index.

Parameters:
index - The index (in)
Returns:
A reference to a com.esri.arcgis.system.IUID
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

findDevice

IExtension findDevice(java.lang.Object nameOrID)
                      throws java.io.IOException,
                             AutomationException
Finds the input device by CLSID (IUID) or name (String).

Parameters:
nameOrID - A Variant (in)
Returns:
A reference to a com.esri.arcgis.system.IExtension
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.