com.esri.arcgis.addinframework
Interface IAddInFactory

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
AddInFactory, IAddInFactoryProxy

public interface IAddInFactory
extends java.io.Serializable


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IID039bc9f9_3cf9_447f_8cac_c673d2a1c817
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void createObject(IAddInRecord pRecord, java.lang.Object pUnkOuter, java.lang.Object[] ppObj)
          Create an instance of the specified object.
 void initialize(IFactoryHook pHook)
          Called to initialize the addin manager (normally called at application startup).
 void shutdown()
          Called to shutdown the addin manager (normally called at application shutdown).
 

Field Detail

IID039bc9f9_3cf9_447f_8cac_c673d2a1c817

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

initialize

void initialize(IFactoryHook pHook)
                throws java.io.IOException,
                       AutomationException
Called to initialize the addin manager (normally called at application startup).

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

createObject

void createObject(IAddInRecord pRecord,
                  java.lang.Object pUnkOuter,
                  java.lang.Object[] ppObj)
                  throws java.io.IOException,
                         AutomationException
Create an instance of the specified object.

Parameters:
pRecord - A reference to a com.esri.arcgis.addinframework.IAddInRecord (in)
pUnkOuter - A reference to another Object (IUnknown) (in)
ppObj - A reference to another Object (IUnknown) (out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

shutdown

void shutdown()
              throws java.io.IOException,
                     AutomationException
Called to shutdown the addin manager (normally called at application shutdown).

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