com.esri.arcgis.systemUI
Class IComboBoxHookProxy

java.lang.Object
  extended by com.esri.arcgis.interop.Dispatch
      extended by com.esri.arcgis.systemUI.IComboBoxHookProxy
All Implemented Interfaces:
IComboBoxHook, java.io.Externalizable, java.io.Serializable

public class IComboBoxHookProxy
extends com.esri.arcgis.interop.Dispatch
implements IComboBoxHook, java.io.Serializable

Internal use class Proxy for COM Interface 'IComboBoxHook'. Generated 3/19/2015 1:21:00 PM from 'C:\ArcGIS\COM\esriSystemUI.olb'

Description: 'Provides methods to program system provided combo boxes.' 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 =

See Also:
Serialized Form

Field Summary
 boolean noncastable
           
static java.lang.Class targetClass
           
 
Fields inherited from class com.esri.arcgis.interop.Dispatch
DISPATCH_METHOD, DISPATCH_PROPERTYGET, DISPATCH_PROPERTYPUT, DISPATCH_PROPERTYPUTREF, objRef
 
Fields inherited from interface com.esri.arcgis.systemUI.IComboBoxHook
DISPID_1610743808_GET_NAME, DISPID_1610743809_NAME, DISPID_1610743810_NAME, DISPID_1610743811_GET_NAME, DISPID_1610743811_PUT_NAME, DISPID_1610743813_NAME, DISPID_1610743814_NAME, DISPID_1610743815_GET_NAME, IID, IID457fa6e9_2b50_4335_9990_b321ff228daf
 
Constructor Summary
  IComboBoxHookProxy()
          For internal use only
  IComboBoxHookProxy(java.lang.Object obj)
           
protected IComboBoxHookProxy(java.lang.Object obj, java.lang.String iid)
           
  IComboBoxHookProxy(java.lang.String CLSID, java.lang.String host, com.esri.arcgis.interop.AuthInfo authInfo)
           
protected IComboBoxHookProxy(java.lang.String CLSID, java.lang.String iid, java.lang.String host, com.esri.arcgis.interop.AuthInfo authInfo)
           
 
Method Summary
 int add(java.lang.String str)
          Add an element to the combo box.
 void addListener(java.lang.String iidStr, java.lang.Object theListener, java.lang.Object theSource)
           
 void clear()
          Clear the combo box of all items.
 java.lang.Object getHook()
          Get Application hook.
 int getSelected()
          GetThe currently selected item in the combo box.
 java.lang.String getValue()
          Set the value for the edit control.
 void remove(int cookie)
          Remove an element from the combo box.
 void removeListener(java.lang.String iidStr, java.lang.Object theListener)
           
 void select(int cookie)
          Select an Item in the combo box.
 void setValue(java.lang.String value)
          Set the value for the edit control.
 
Methods inherited from class com.esri.arcgis.interop.Dispatch
bindUsingMoniker, constructVtblPosTable, convertToNative, cookieForListener, createDispatch, createObjrefMonikerDisplayName, equals, getActiveObject, getActiveObject, getDefaultProperty, getDispatchIdOfName, getLastErrorCode, getMtsObjectContext, getObjRef, getPropertyByName, getPropertyByName, getVtblPos, hashCode, initDispatch, invoke, invokeMethodByName, invokeMethodByName, invokeMethodByName, invokePropertyGetByName, invokePropertyPutByName, invokePropertyPutByRefByName, isNativeMode, isObjRef, optimizedVtblInvoke, queryInterface, readExternal, release, setNativeMode, setPropertyByName, toString, vtblInvoke, writeExternal
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

targetClass

public static final java.lang.Class targetClass

noncastable

public boolean noncastable
Constructor Detail

IComboBoxHookProxy

public IComboBoxHookProxy(java.lang.String CLSID,
                          java.lang.String host,
                          com.esri.arcgis.interop.AuthInfo authInfo)
                   throws java.net.UnknownHostException,
                          java.io.IOException
Throws:
java.net.UnknownHostException
java.io.IOException

IComboBoxHookProxy

public IComboBoxHookProxy()
For internal use only


IComboBoxHookProxy

public IComboBoxHookProxy(java.lang.Object obj)
                   throws java.io.IOException
Throws:
java.io.IOException

IComboBoxHookProxy

protected IComboBoxHookProxy(java.lang.Object obj,
                             java.lang.String iid)
                      throws java.io.IOException
Throws:
java.io.IOException

IComboBoxHookProxy

protected IComboBoxHookProxy(java.lang.String CLSID,
                             java.lang.String iid,
                             java.lang.String host,
                             com.esri.arcgis.interop.AuthInfo authInfo)
                      throws java.io.IOException
Throws:
java.io.IOException
Method Detail

addListener

public void addListener(java.lang.String iidStr,
                        java.lang.Object theListener,
                        java.lang.Object theSource)
                 throws java.io.IOException
Overrides:
addListener in class com.esri.arcgis.interop.Dispatch
Throws:
java.io.IOException

removeListener

public void removeListener(java.lang.String iidStr,
                           java.lang.Object theListener)
                    throws java.io.IOException
Overrides:
removeListener in class com.esri.arcgis.interop.Dispatch
Throws:
java.io.IOException

getHook

public java.lang.Object getHook()
                         throws java.io.IOException,
                                AutomationException
Get Application hook.

Specified by:
getHook in interface IComboBoxHook
Returns:
A reference to another Automation Object (IDispatch)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

add

public int add(java.lang.String str)
        throws java.io.IOException,
               AutomationException
Add an element to the combo box.

Specified by:
add in interface IComboBoxHook
Parameters:
str - The str (in)
Returns:
The cookie
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

remove

public void remove(int cookie)
            throws java.io.IOException,
                   AutomationException
Remove an element from the combo box.

Specified by:
remove in interface IComboBoxHook
Parameters:
cookie - The cookie (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setValue

public void setValue(java.lang.String value)
              throws java.io.IOException,
                     AutomationException
Set the value for the edit control.

Specified by:
setValue in interface IComboBoxHook
Parameters:
value - The value (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getValue

public java.lang.String getValue()
                          throws java.io.IOException,
                                 AutomationException
Set the value for the edit control.

Specified by:
getValue in interface IComboBoxHook
Returns:
The value
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

clear

public void clear()
           throws java.io.IOException,
                  AutomationException
Clear the combo box of all items.

Specified by:
clear in interface IComboBoxHook
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

select

public void select(int cookie)
            throws java.io.IOException,
                   AutomationException
Select an Item in the combo box.

Specified by:
select in interface IComboBoxHook
Parameters:
cookie - The cookie (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getSelected

public int getSelected()
                throws java.io.IOException,
                       AutomationException
GetThe currently selected item in the combo box.

Specified by:
getSelected in interface IComboBoxHook
Returns:
The cookie
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.