|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IVersionInfo
Provides access to members that supply version information.
The IVersionInfo interface is a read-only collection of methods used to obtain different properties of a version. If you need to set properties of a version, use the IVersion interface.
Method Summary | |
---|---|
int |
getAccess()
The version's access permission. |
IEnumVersionInfo |
getAncestors()
The version's ancestors. |
IEnumVersionInfo |
getChildren()
The version's children. |
Object |
getCreated()
The date and time the version was created. |
String |
getDescription()
The version's description. |
Object |
getModified()
The date and time the version was last modified. |
IVersionInfo |
getParent()
The version's parent. |
String |
getVersionName()
The version's name. |
boolean |
isOwner()
True if the current connected user is the owner of this version. |
Method Detail |
---|
String getVersionName() throws IOException, AutomationException
The VersionName method is used to retrieve a version's name. The name will be qualified with the owner of the version. For example, for a version called "MyWorkOrder" owned by the user "GIS", VersionName will return "GIS.MyWorkOrder"
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.String getDescription() throws IOException, AutomationException
The Description method is used to retrieve a version's description.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.int getAccess() throws IOException, AutomationException
The Access method is used to retrieve a version's permission. The permission can be private, public or protected.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.Object getCreated() throws IOException, AutomationException
The Created method is used to retrieve the date when the version was created.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.Object getModified() throws IOException, AutomationException
The Modified method is used to retrieve the date when the version was last modified.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IVersionInfo getParent() throws IOException, AutomationException
The Parent method is used to retrieve the version's parent version properties.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IEnumVersionInfo getChildren() throws IOException, AutomationException
The Children method is used to retrieve an IEnumVersionInfo enumeration of all the version's that were created from the current version. The IEnumVersionInfo enumeration is then used to obtain an IVersionInfo object for the child version.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IEnumVersionInfo getAncestors() throws IOException, AutomationException
The Ancestors method is used to retrieve an IEnumVersionInfo enumeration of all the version's that are in the ancestral lineage for the current version. For example, the parent version, the grandparent version, etc. all the way back to the default version. The IEnumVersionInfo enumeration is then used to obtain an IVersionInfo object for each version.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.boolean isOwner() throws IOException, AutomationException
The IsOwner method is used to retrieve a boolean value to determine if the currently connected user owns the version.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |