|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.display.RepresentationRule
public class RepresentationRule
An object defining a representation rule.
RepresentationRule object is a collection of basic symbols such as BasicLineSymbol, BasicFillSymbol and BasicMarkerSymbol along with MarkerPlacement used for representing features within a representationclass. Complex symbols can be created by incorporating one or more geometric effects into your rule.
Standard ArcGIS symbols such as SimpleMarkerSymbol, SimpleLineSymbol etc implementing ISymbol interface can also be converted to a representation rule using IRepresentationRuleInit interface. When a standard ArcGIS symbol is converted to a representation rule, it may contain either one or more basic symbol layers.
The graphic attributes present for a rule can be overriden using regular attribute fields.
Use IRepresentationRule interface to manage the individual symbol layer within a rule.
Constructor Summary | |
---|---|
RepresentationRule()
Constructs a RepresentationRule using ArcGIS Engine. |
|
RepresentationRule(Object obj)
Deprecated. As of ArcGIS 9.2, replaced by normal Java casts. RepresentationRule theRepresentationRule = (RepresentationRule) obj; |
Method Summary | |
---|---|
void |
add(IGeometricEffect geomEffect)
Adds a new geometric effect. |
void |
add(IGraphicAttributes attributes,
int graphicAttributeIndex,
String fieldName)
Creates an explicit override with field content. |
void |
assign(IClone src)
Assigns the properties of src to the receiver. |
Object |
convertToSupportedObject(int docVersion)
Convert the object to another object that is supported. |
void |
deserialize(IXMLSerializeData data)
Deserializes an object from XML. |
void |
draw(int index,
IOutputContext context,
IGeometry geometry,
IEnvelope envelope)
Draws a layer of a representation rule. |
boolean |
equals(Object o)
Compare this object with another |
IClone |
esri_clone()
Clones the receiver and assigns the result to *clone. |
IGeometry |
getAllOutlineParts(IGeometry geometry,
int type,
int option,
double buffer,
IEnvelope clipEnvelope)
Constructs the entire drawing outline of a drawing rule. |
IGraphicAttributes |
getAttributesFromID(int attrListID)
Retrieves the attribute list from an identifier. |
void |
getClassID(GUID[] pClassID)
getClassID |
static String |
getClsid()
getClsid. |
int |
getCount()
Number of geometric effects. |
IGeometricEffect |
getElement(int index)
The geometric effect at the specified position. |
int |
getFeatureSeed()
Seed value to ensure stability of random effects. |
int |
getIDFromAttributes(IGraphicAttributes attrList)
Retrieves the identifier of an attribute list. |
IBasicSymbol |
getLayer(int index)
Layer at a given index. |
int |
getLayerCount()
Number of layers in the representation rule. |
int |
getMapLevel()
Current map level for drawing multi-level symbols. |
String |
getMinNamespaceSupported()
The minimum namespace the class can serialize to (eg the 90 namespace). |
int |
getOutputType(int inputType)
The output type of the geometric effect. |
void |
getSizeMax(_ULARGE_INTEGER[] pcbSize)
getSizeMax |
int |
hashCode()
the hashcode for this object |
boolean |
hitTest(IGeometry geometry,
IPoint point,
double tolerance)
Tests if a point is located on the drawing outline. |
void |
initWithSymbol(ISymbol symbol)
Initializes the representation rule with a symbol. |
void |
insert(int index,
IGeometricEffect geomEffect)
Inserts a new geometric effect. |
void |
insertLayer(int index,
IBasicSymbol symbol)
Adds a layer to the representation rule. |
void |
interfaceSupportsErrorInfo(GUID riid)
interfaceSupportsErrorInfo |
void |
isDirty()
isDirty |
boolean |
isEqual(IClone other)
Indicates if the receiver and other have the same properties. |
boolean |
isIdentical(IClone other)
Indicates if the receiver and other are the same object. |
boolean |
isSupportedAtVersion(int docVersion)
Is this object valid at the given document version. |
void |
load(IStream pstm)
load |
IFieldOverride |
next()
Accesses the next field override in the collection. |
IGeometry |
nextGeometry()
Accesses the next geometry generated by th effect. |
IGeometry |
nextOutlinePart()
Retrieves the next part of the outline. |
void |
readExternal(ObjectInput in)
|
void |
remove(int index)
Removes a geometric effect. |
void |
removeAll()
Removes all geometric effects. |
void |
removeLayer(int index)
Removes a layer from the representation rule. |
void |
reset()
Resets the override collection, before calling Next. |
void |
reset(IGeometry geometry)
Resets the collection of generated geometries. |
void |
reset(IGeometry geometry,
int type,
int option,
double buffer,
IEnvelope clipEnvelope)
Resets the outline part enumeration. |
void |
save(IStream pstm,
int fClearDirty)
save |
void |
serialize(IXMLSerializeData data)
Serializes an object to XML. |
void |
setFeatureSeed(int featureOID)
Seed value to ensure stability of random effects. |
void |
setMapLevel(int mapLevel)
Current map level for drawing multi-level symbols. |
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 RepresentationRule() throws IOException, UnknownHostException
IOException
- if there are interop problems
UnknownHostException
- if there are interop problemspublic RepresentationRule(Object obj) throws IOException
RepresentationRule theRepresentationRule = (RepresentationRule) obj;
obj
to RepresentationRule
.
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 int getLayerCount() throws IOException, AutomationException
getLayerCount
in interface IRepresentationRule
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IBasicSymbol getLayer(int index) throws IOException, AutomationException
getLayer
in interface IRepresentationRule
index
- The index (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void insertLayer(int index, IBasicSymbol symbol) throws IOException, AutomationException
insertLayer
in interface IRepresentationRule
index
- The index (in)symbol
- A reference to a com.esri.arcgis.display.IBasicSymbol (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void removeLayer(int index) throws IOException, AutomationException
If RemoveLayer method is used to remove the very last symbol layer present in a representation rule, it is the responsibility of the developer to add atleast one symbol layer. Use InsertLayer or IRepresentationRuleInit::InitWithSymbol methods to achieve this.
removeLayer
in interface IRepresentationRule
index
- The index (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void draw(int index, IOutputContext context, IGeometry geometry, IEnvelope envelope) throws IOException, AutomationException
draw
in interface IRepresentationRule
index
- The index (in)context
- A reference to a com.esri.arcgis.display.IOutputContext (in)geometry
- A reference to a com.esri.arcgis.geometry.IGeometry (in)envelope
- A reference to a com.esri.arcgis.geometry.IEnvelope (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getIDFromAttributes(IGraphicAttributes attrList) throws IOException, AutomationException
getIDFromAttributes
in interface IRepresentationRule2
attrList
- A reference to a com.esri.arcgis.display.IGraphicAttributes (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IGraphicAttributes getAttributesFromID(int attrListID) throws IOException, AutomationException
getAttributesFromID
in interface IRepresentationRule2
attrListID
- The attrListID (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setFeatureSeed(int featureOID) throws IOException, AutomationException
setFeatureSeed
in interface IRepresentationRule2
featureOID
- The featureOID (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getFeatureSeed() throws IOException, AutomationException
getFeatureSeed
in interface IRepresentationRule2
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void initWithSymbol(ISymbol symbol) throws IOException, AutomationException
Use this piece of code to create and initilize a regular ArcGIS symbol to a RepresentationRule object.
Public Sub RepRuleInit() Dim pRepresentationRules As IRepresentationRules Dim pDiamond As ISimpleMarkerSymbol Dim pRepresentationRule As IRepresentationRule Dim pRepRuleInit As IRepresentationRuleInit Dim lDiamondID As Long 'Create new RepresentationRules for this Representation Class Set pRepresentationRules = New RepresentationRules 'Create new Simple Marker Symbol (diamond) Set pDiamond = New SimpleMarkerSymbol pDiamond.Style = esriSMSDiamond pDiamond.size = 4 'Create a new RepresentationRule using a SimpleMarkerSymbol object that implements ISymbol interface and add to Collection Set pRepresentationRule = New RepresentationRule Set pRepRuleInit = pRepresentationRule pRepRuleInit.InitWithSymbol pDiamond 'Initializes with standard ArcGIS symbols lDiamondID = pRepresentationRules.Add(pRepresentationRule) pRepresentationRules.Name(lDiamondID) = "diamond" End Sub
initWithSymbol
in interface IRepresentationRuleInit
symbol
- A reference to a com.esri.arcgis.display.ISymbol (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getMapLevel() throws IOException, AutomationException
getMapLevel
in interface IMapLevel
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setMapLevel(int mapLevel) throws IOException, AutomationException
setMapLevel
in interface IMapLevel
mapLevel
- The mapLevel (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getOutputType(int inputType) throws IOException, AutomationException
getOutputType
in interface IGeometricEffect
inputType
- A com.esri.arcgis.geometry.esriGeometryType constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void reset(IGeometry geometry) throws IOException, AutomationException
reset
in interface IGeometricEffect
geometry
- A reference to a com.esri.arcgis.geometry.IGeometry (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IGeometry nextGeometry() throws IOException, AutomationException
nextGeometry
in interface IGeometricEffect
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getCount() throws IOException, AutomationException
getCount
in interface IGeometricEffects
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IGeometricEffect getElement(int index) throws IOException, AutomationException
getElement
in interface IGeometricEffects
index
- The index (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void insert(int index, IGeometricEffect geomEffect) throws IOException, AutomationException
insert
in interface IGeometricEffects
index
- The index (in)geomEffect
- A reference to a com.esri.arcgis.display.IGeometricEffect (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void add(IGeometricEffect geomEffect) throws IOException, AutomationException
add
in interface IGeometricEffects
geomEffect
- A reference to a com.esri.arcgis.display.IGeometricEffect (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void remove(int index) throws IOException, AutomationException
remove
in interface IGeometricEffects
index
- The index (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void removeAll() throws IOException, AutomationException
removeAll
in interface IGeometricEffects
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public boolean hitTest(IGeometry geometry, IPoint point, double tolerance) throws IOException, AutomationException
hitTest
in interface IDrawingOutline
geometry
- A reference to a com.esri.arcgis.geometry.IGeometry (in)point
- A reference to a com.esri.arcgis.geometry.IPoint (in)tolerance
- The tolerance (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IGeometry getAllOutlineParts(IGeometry geometry, int type, int option, double buffer, IEnvelope clipEnvelope) throws IOException, AutomationException
getAllOutlineParts
in interface IDrawingOutline
geometry
- A reference to a com.esri.arcgis.geometry.IGeometry (in)type
- A com.esri.arcgis.display.esriOutlineType constant (in)option
- A com.esri.arcgis.display.esriOutlineOption constant (in)buffer
- The buffer (in)clipEnvelope
- A reference to a com.esri.arcgis.geometry.IEnvelope (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void reset(IGeometry geometry, int type, int option, double buffer, IEnvelope clipEnvelope) throws IOException, AutomationException
reset
in interface IDrawingOutline
geometry
- A reference to a com.esri.arcgis.geometry.IGeometry (in)type
- A com.esri.arcgis.display.esriOutlineType constant (in)option
- A com.esri.arcgis.display.esriOutlineOption constant (in)buffer
- The buffer (in)clipEnvelope
- A reference to a com.esri.arcgis.geometry.IEnvelope (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IGeometry nextOutlinePart() throws IOException, AutomationException
nextOutlinePart
in interface IDrawingOutline
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void add(IGraphicAttributes attributes, int graphicAttributeIndex, String fieldName) throws IOException, AutomationException
add
in interface IFieldOverrides
attributes
- A reference to a com.esri.arcgis.display.IGraphicAttributes (in)graphicAttributeIndex
- The graphicAttributeIndex (in)fieldName
- The fieldName (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void reset() throws IOException, AutomationException
reset
in interface IFieldOverrides
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IFieldOverride next() throws IOException, AutomationException
next
in interface IFieldOverrides
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 IClone esri_clone() throws IOException, AutomationException
esri_clone
in interface IClone
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void assign(IClone src) throws IOException, AutomationException
assign
in interface IClone
src
- A reference to a com.esri.arcgis.system.IClone (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public boolean isEqual(IClone other) throws IOException, AutomationException
IsEqual returns True if the receiver and the source have the same properties. Note, this does not imply that the receiver and the source reference the same object.
isEqual
in interface IClone
other
- A reference to a com.esri.arcgis.system.IClone (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public boolean isIdentical(IClone other) throws IOException, AutomationException
IsIdentical returns true if the receiver and the source reference the same object.
isIdentical
in interface IClone
other
- A reference to a com.esri.arcgis.system.IClone (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void interfaceSupportsErrorInfo(GUID riid) throws IOException, AutomationException
Indicates whether the interface supports IErrorInfo.
interfaceSupportsErrorInfo
in interface ISupportErrorInfo
riid
- A Structure: com.esri.arcgis.support.ms.stdole.GUID (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public boolean isSupportedAtVersion(int docVersion) throws IOException, AutomationException
Use IsSupportedAtVersion to identify if a particular object should be saved to the ObjectStream. This result is based on the esriArcGISVersion enumeration. In some instances, if the object is not supported at a particular ArcGIS version, the object may support conversion to another similar object; use IDocumentVersionSupportGEN::ConvertToSupportedObject to accomplish this.
isSupportedAtVersion
in interface IDocumentVersionSupportGEN
docVersion
- A com.esri.arcgis.system.esriArcGISVersion constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public Object convertToSupportedObject(int docVersion) throws IOException, AutomationException
This method should be used when IDocumentVersionSupportGEN::IsSupportedAtVersion returns FALSE. Calling ConvertToSupportedObject will return an IUnknown pointer to a relevant object supported at the particular ArcGIS version. Not all objects will return a supported object; in these cases a null pointer will be returned.
convertToSupportedObject
in interface IDocumentVersionSupportGEN
docVersion
- A com.esri.arcgis.system.esriArcGISVersion constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void serialize(IXMLSerializeData data) throws IOException, AutomationException
serialize
in interface IXMLSerialize
data
- A reference to a com.esri.arcgis.system.IXMLSerializeData (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void deserialize(IXMLSerializeData data) throws IOException, AutomationException
deserialize
in interface IXMLSerialize
data
- A reference to a com.esri.arcgis.system.IXMLSerializeData (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getMinNamespaceSupported() throws IOException, AutomationException
getMinNamespaceSupported
in interface IXMLVersionSupport
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 |