com.esri.arcgis.framework
Class ComPropertyPageSite

java.lang.Object
  extended by com.esri.arcgis.framework.ComPropertyPageSite
All Implemented Interfaces:
IComPropertyPageSite, IPropertyPageSite, IPropertyPageSiteConfig, com.esri.arcgis.interop.RemoteObjRef, Serializable

public class ComPropertyPageSite
extends Object
implements com.esri.arcgis.interop.RemoteObjRef, IPropertyPageSite, IPropertyPageSiteConfig, IComPropertyPageSite

COM Property Page Site.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

See Also:
Serialized Form

Field Summary
 
Fields inherited from interface com.esri.arcgis.framework.IComPropertyPageSite
IID, IID3b81f6f1_54a0_11d3_b8c3_00600802e603, xxDummy
 
Constructor Summary
ComPropertyPageSite()
          Constructs a ComPropertyPageSite using ArcGIS Engine.
ComPropertyPageSite(Object obj)
          Deprecated. As of ArcGIS 9.2, replaced by normal Java casts.
ComPropertyPageSite theComPropertyPageSite = (ComPropertyPageSite) obj;
 
Method Summary
 boolean equals(Object o)
          Compare this object with another
static String getClsid()
          getClsid.
 int getHWnd()
          The window handle of the site.
 void getLocaleID(int[] pLocaleID)
          getLocaleID
 IPropertyPage getPage()
          The page contained by the site.
 void getPageContainer(Object[] ppUnk)
          getPageContainer
 int hashCode()
          the hashcode for this object
 void onStatusChange(int dwFlags)
          onStatusChange
 void pageChanged()
          Called by the property page to let the property sheet know that something changed.
 void setHWnd(int hWnd)
          The window handle of the site.
 void setPageByRef(IPropertyPage page)
          The page contained by the site.
 void translateAccelerator(tagMSG pMsg)
          translateAccelerator
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef
getJintegraDispatch, release
 

Constructor Detail

ComPropertyPageSite

public ComPropertyPageSite()
                    throws IOException,
                           UnknownHostException
Constructs a ComPropertyPageSite using ArcGIS Engine.

Throws:
IOException - if there are interop problems
UnknownHostException - if there are interop problems

ComPropertyPageSite

public ComPropertyPageSite(Object obj)
                    throws IOException
Deprecated. As of ArcGIS 9.2, replaced by normal Java casts.
ComPropertyPageSite theComPropertyPageSite = (ComPropertyPageSite) obj;

Construct a ComPropertyPageSite using a reference to such an object returned from ArcGIS Engine or Server. This is semantically equivalent to casting obj to ComPropertyPageSite.

Parameters:
obj - an object returned from ArcGIS Engine or Server
Throws:
IOException - if there are interop problems
Method Detail

getClsid

public static String getClsid()
getClsid.


equals

public boolean equals(Object o)
Compare this object with another

Overrides:
equals in class Object

hashCode

public int hashCode()
the hashcode for this object

Overrides:
hashCode in class Object

onStatusChange

public void onStatusChange(int dwFlags)
                    throws IOException,
                           AutomationException
onStatusChange

Description

IPropertyPageSite is a Microsoft interface. Please refer to MSDN for information about this interface

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Specified by:
onStatusChange in interface IPropertyPageSite
Parameters:
dwFlags - The dwFlags (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getLocaleID

public void getLocaleID(int[] pLocaleID)
                 throws IOException,
                        AutomationException
getLocaleID

Description

IPropertyPageSite is a Microsoft interface. Please refer to MSDN for information about this interface

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Specified by:
getLocaleID in interface IPropertyPageSite
Parameters:
pLocaleID - The pLocaleID (out: use single element array)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getPageContainer

public void getPageContainer(Object[] ppUnk)
                      throws IOException,
                             AutomationException
getPageContainer

Description

IPropertyPageSite is a Microsoft interface. Please refer to MSDN for information about this interface

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Specified by:
getPageContainer in interface IPropertyPageSite
Parameters:
ppUnk - A reference to another Object (IUnknown) (out: use single element array)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

translateAccelerator

public void translateAccelerator(tagMSG pMsg)
                          throws IOException,
                                 AutomationException
translateAccelerator

Description

IPropertyPageSite is a Microsoft interface. Please refer to MSDN for information about this interface.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Specified by:
translateAccelerator in interface IPropertyPageSite
Parameters:
pMsg - A Structure: com.esri.arcgis.framework.tagMSG (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setHWnd

public void setHWnd(int hWnd)
             throws IOException,
                    AutomationException
The window handle of the site.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Specified by:
setHWnd in interface IPropertyPageSiteConfig
Parameters:
hWnd - The hWnd (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getHWnd

public int getHWnd()
            throws IOException,
                   AutomationException
The window handle of the site.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Specified by:
getHWnd in interface IPropertyPageSiteConfig
Returns:
The hWnd
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setPageByRef

public void setPageByRef(IPropertyPage page)
                  throws IOException,
                         AutomationException
The page contained by the site.

Product Availability

Available with ArcGIS Desktop.

Specified by:
setPageByRef in interface IPropertyPageSiteConfig
Parameters:
page - A reference to a com.esri.arcgis.framework.IPropertyPage (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getPage

public IPropertyPage getPage()
                      throws IOException,
                             AutomationException
The page contained by the site.

Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows

Specified by:
getPage in interface IPropertyPageSiteConfig
Returns:
A reference to a com.esri.arcgis.framework.IPropertyPage
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

pageChanged

public void pageChanged()
                 throws IOException,
                        AutomationException
Called by the property page to let the property sheet know that something changed.

Specified by:
pageChanged in interface IComPropertyPageSite
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.