|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.carto.ElementCollection
public class ElementCollection
Collection of elements.
An ElementCollection is a collection of graphics elements typically used to manage TextElements used in annotation.
Constructor Summary | |
---|---|
ElementCollection()
Constructs a ElementCollection using ArcGIS Engine. |
|
ElementCollection(Object obj)
Deprecated. As of ArcGIS 9.2, replaced by normal Java casts. ElementCollection theElementCollection = (ElementCollection) obj; |
Method Summary | |
---|---|
void |
add(IElement element,
int linkedFeatureID)
Adds an element to the collection. |
void |
add(IElement element,
int linkedFeatureID,
int annotationClassID,
int status)
Adds an element to the collection. |
void |
clear()
Removes all the elements in the collection. |
boolean |
equals(Object o)
Compare this object with another |
void |
getClassID(GUID[] pClassID)
getClassID |
static String |
getClsid()
getClsid. |
int |
getCount()
Number of elements in the collection. |
void |
getSizeMax(_ULARGE_INTEGER[] pcbSize)
getSizeMax |
int |
hashCode()
the hashcode for this object |
void |
isDirty()
isDirty |
void |
load(IStream pstm)
load |
void |
queryItem(int index,
IElement[] element,
int[] linkedFeatureID)
Element at the given index. |
void |
queryItem(int index,
IElement[] element,
int[] linkedFeatureID,
int[] annotationClassID,
int[] status)
Element at the given index. |
void |
readExternal(ObjectInput in)
|
void |
remove(IElement element)
Remove an element from the collection. |
void |
save(IStream pstm,
int fClearDirty)
save |
void |
writeExternal(ObjectOutput out)
|
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 |
---|
public ElementCollection() throws IOException, UnknownHostException
IOException
- if there are interop problems
UnknownHostException
- if there are interop problemspublic ElementCollection(Object obj) throws IOException
ElementCollection theElementCollection = (ElementCollection) obj;
obj
to ElementCollection
.
obj
- an object returned from ArcGIS Engine or Server
IOException
- if there are interop problemsMethod Detail |
---|
public static String getClsid()
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
public void add(IElement element, int linkedFeatureID) throws IOException, AutomationException
add
in interface IElementCollection
element
- A reference to a com.esri.arcgis.carto.IElement (in)linkedFeatureID
- The linkedFeatureID (in, optional, pass -1 if not required)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getCount() throws IOException, AutomationException
getCount
in interface IElementCollection
getCount
in interface IElementCollection2
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void queryItem(int index, IElement[] element, int[] linkedFeatureID) throws IOException, AutomationException
Passes out the element at the specified index. Will also pass out the feature ID for feature-linked elements if the FeatureID parameter is used.
queryItem
in interface IElementCollection
index
- The index (in)element
- A reference to a com.esri.arcgis.carto.IElement (out: use single element array)linkedFeatureID
- The linkedFeatureID (out: use single element array, optional, pass single element of null if not required)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void clear() throws IOException, AutomationException
clear
in interface IElementCollection
clear
in interface IElementCollection2
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void remove(IElement element) throws IOException, AutomationException
Removes specific elements from ElementCollection. Query method and TypeOf Statement can be used to determine a particular element before removing it.
remove
in interface IElementCollection
remove
in interface IElementCollection2
element
- A reference to a com.esri.arcgis.carto.IElement (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void add(IElement element, int linkedFeatureID, int annotationClassID, int status) throws IOException, AutomationException
add
in interface IElementCollection2
element
- A reference to a com.esri.arcgis.carto.IElement (in)linkedFeatureID
- The linkedFeatureID (in, optional, pass 0 if not required)annotationClassID
- The annotationClassID (in, optional, pass -1 if not required)status
- A com.esri.arcgis.carto.esriAnnotationStatus constant (in, optional, pass 0 if not required)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void queryItem(int index, IElement[] element, int[] linkedFeatureID, int[] annotationClassID, int[] status) throws IOException, AutomationException
queryItem
in interface IElementCollection2
index
- The index (in)element
- A reference to a com.esri.arcgis.carto.IElement (out: use single element array)linkedFeatureID
- The linkedFeatureID (out: use single element array, optional, pass single element of null if not required)annotationClassID
- The annotationClassID (out: use single element array, optional, pass single element of null if not required)status
- A com.esri.arcgis.carto.esriAnnotationStatus constant (out: use single element array, optional, pass single element of null if not required)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void getClassID(GUID[] pClassID) throws IOException, AutomationException
IPersist is a Microsoft interface. Please refer to MSDN for information about this interface.
getClassID
in interface IPersist
pClassID
- A Structure: com.esri.arcgis.support.ms.stdole.GUID (out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void isDirty() throws IOException, AutomationException
IPersistStream is a Microsoft interface. Please refer to MSDN for information about this interface.
isDirty
in interface IPersistStream
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void load(IStream pstm) throws IOException, AutomationException
IPersistStream is a Microsoft interface. Please refer to MSDN for information about this interface.
load
in interface IPersistStream
pstm
- A reference to a com.esri.arcgis.system.IStream (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void save(IStream pstm, int fClearDirty) throws IOException, AutomationException
IPersistStream is a Microsoft interface. Please refer to MSDN for information about this interface.
save
in interface IPersistStream
pstm
- A reference to a com.esri.arcgis.system.IStream (in)fClearDirty
- The fClearDirty (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void getSizeMax(_ULARGE_INTEGER[] pcbSize) throws IOException, AutomationException
IPersistStream is a Microsoft interface. Please refer to MSDN for information about this interface.
getSizeMax
in interface IPersistStream
pcbSize
- A Structure: com.esri.arcgis.system._ULARGE_INTEGER (out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void writeExternal(ObjectOutput out) throws IOException
writeExternal
in interface Externalizable
IOException
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
readExternal
in interface Externalizable
IOException
ClassNotFoundException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |