|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IObjectClassValidation
Provides access to members that validate row information.
The IObjectClassValidation interface is an optional interface that is used to provide custom validation of objects in an object class or feature class. This validation is in addition to geodatabase validation of domains, relationship rules and connectivity rules.
com.esri.arcgis.editor.IShortTransactionObjectInspector
Method Summary | |
---|---|
String |
validateField(IRow row,
String fieldName)
Validates the row's specified attribute. |
String |
validateRow(IRow row)
Validates the row. |
Method Detail |
---|
String validateField(IRow row, String fieldName) throws IOException, AutomationException
The ValidateField method will be called when IValidate::GetInvalidFields is called on an object of the associated object class.
row
- A reference to a com.esri.arcgis.geodatabase.IRow (in)fieldName
- The fieldName (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.com.esri.arcgis.editor.IShortTransactionObjectInspector
String validateRow(IRow row) throws IOException, AutomationException
The ValidateRow method is called by an Object’s IValidate::Validate and by the Validate methods on the IValidation interface of the associated object class. ValidateRow should be used to validate database or spatial relationships in addition to field values. If the field or row is invalid, an appropriate error string should be returned. Otherwise, return a zero length string.
row
- A reference to a com.esri.arcgis.geodatabase.IRow (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.com.esri.arcgis.editor.IShortTransactionObjectInspector
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |