Interface ELProxy
-
- All Superinterfaces:
ELContainerAble
,ELContAsgnAble
,ELDeleteAble
,ELElement
,ELNamedElement
,ELNamespaceAble
,ELNamespaceAsgnAble
,ELObject
,ELUUIDAble
- All Known Subinterfaces:
MEProxy
,MEProxyExternal
,MEProxyInnovator
public interface ELProxy extends ELNamespaceAsgnAble, ELNamespaceAble
This is a utility class for ELProxy that provides static methods for creation or other purposes.- Note:
- The interface ELProxy describes an abstract ability of an object. Therefore no instances of this type can be found in the repository!
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ELProxy.VAttr
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getElemBitmapName()
Returns the proxy's bitmap name.java.lang.String
getElemDisplayName()
Returns the proxy's display name.int
getElemId()
Returns the proxy's referenced element ID.java.lang.String
getElemIdReference()
Returns the proxy's referenced element ID name.int
getElemKind()
Returns the proxy's referenced element kind.int
getElemType()
Returns the proxy's referenced element type.java.lang.String
getElemUUID()
Contains a UUID option.java.lang.String
getHREF()
Returns the proxy referenced element's reference.void
setElemBitmapName(java.lang.String value)
Set the value of Attribut ElemBitmapName.void
setElemDisplayName(java.lang.String value)
Set the value of Attribut ElemDisplayName.void
setElemId(int value)
Set the value of Attribut ElemId.void
setElemIdReference(java.lang.String value)
Set the value of Attribut ElemIdReference.void
setElemKind(int value)
Set the value of Attribut ElemKind.void
setElemType(int value)
Set the value of Attribut ElemType.void
setElemUUID(java.lang.String value)
Set the value of Attribut ElemUUID.void
setHREF(java.lang.String value)
Set the value of Attribut HREF.-
Methods inherited from interface de.mid.innovator.srv2api.icw2elem.ELContainerAble
getClientDependency, getOwnedElement, getOwnedElementTransitiveDown, getOwnedElementTransitiveDown, getOwnedElementTransitiveDownAndUnresolved, getOwnedElementTransitiveDownAndUnresolved, getOwnedOrReferencedElementTransitiveDown, getOwnedOrReferencedElementTransitiveDown, getOwnedRelshipBinDirWithTarget, getOwnedRelshipBinDirWithTarget, getRedirectedModelContainer, getRelshipBinDirSource, getSelfAndOwnedElementTransitiveDown, getSelfAndOwnedElementTransitiveDown, getSortedContents, sortContents
-
Methods inherited from interface de.mid.innovator.srv2api.icw2elem.ELContAsgnAble
getAsgnKind, getContSortOrder, getFirstOwnerWhichIsConformTo, getOwner, getOwnerTransitive, getOwnerTransitive, getSelfAndOwnerTransitive, getSelfAndOwnerTransitive, getVersionRoot, isTransitiveChildOf, setAsgnKind, setContSortOrder, setOwner
-
Methods inherited from interface de.mid.innovator.srv2api.icw2elem.ELDeleteAble
delete
-
Methods inherited from interface de.mid.innovator.srv2api.icw2elem.ELElement
duplicateElement, getAssignAbleToVattr, getAssignAbleToVattr, getClientId, getCreateTemplateOfInstance, getDisplayBitmap, getDisplayColor, getDisplayFont, getDisplayLine, getDisplayName, getDisplayNameShort, getDisplayNSName, getElementCache, getElementMappingInformation, getQualifiedNamespaceName, getRelshipBinDir, getRelshipBinDir, getRelshipBinDirTarget, getUnitToLock, getValSpecElement, isContainedInProfile, isUnresolved, lockUnit, setUnresolved, unlockUnit
-
Methods inherited from interface de.mid.innovator.srv2api.icw2elem.ELNamedElement
getName, getNameKind, getQualifiedDisplayName, getQualifiedName, getQualifiedTLName, getSupplierDependency, rename, setName, setNameKind
-
Methods inherited from interface de.mid.innovator.srv2api.icw2elem.ELNamespaceAble
getElementImport, getImportedElement, getImportedElement, getImportedPackage, getImportedPackage, getMember, getMember, getMemberByPattern, getMemberByPattern, getOwnedConstraint, getOwnedMember, getOwnedMemberByPath, getOwnedMemberByPattern, getOwnedMemberByPattern, getOwnedMemberTransitiveByPattern, getOwnedMemberTransitiveByPattern, getOwnedMemberTransitiveByPatternIgnoreCase, getOwnedMemberTransitiveByPatternIgnoreCase, getPackageImport
-
Methods inherited from interface de.mid.innovator.srv2api.icw2elem.ELNamespaceAsgnAble
getMnClassicTREFName, getNamespace, getNamespaceName, getPath, getSeparator, getVisibility, setUniqueName, setVisibility
-
Methods inherited from interface de.mid.innovator.srv2api.icw2elem.ELObject
getId, getLongId, getMetaClass, getMetaName, getOclClass, getSrvCon, hasRead
-
Methods inherited from interface de.mid.innovator.srv2api.icw2elem.ELUUIDAble
getHyperlinkReferenceAble, getNotToTranslateAttribute, getTranslatedValue, getUUID, setUUID
-
-
-
-
Method Detail
-
getElemDisplayName
java.lang.String getElemDisplayName() throws InoNetException, SrvErrorException
Returns the proxy's display name. This is normally the name of the referenced element.- Throws:
InoNetException
SrvErrorException
-
setElemDisplayName
void setElemDisplayName(java.lang.String value) throws InoNetException, SrvErrorException
Set the value of Attribut ElemDisplayName.- Parameters:
value
- The value to be set.- Throws:
InoNetException
SrvErrorException
-
getElemType
int getElemType() throws InoNetException, SrvErrorException
Returns the proxy's referenced element type. This value is equal to the referenced element's VOCL value. See also K_VOCL.- Throws:
InoNetException
SrvErrorException
-
setElemType
void setElemType(int value) throws InoNetException, SrvErrorException
Set the value of Attribut ElemType.- Parameters:
value
- The value to be set.- Throws:
InoNetException
SrvErrorException
-
getElemKind
int getElemKind() throws InoNetException, SrvErrorException
Returns the proxy's referenced element kind.- Throws:
InoNetException
SrvErrorException
-
setElemKind
void setElemKind(int value) throws InoNetException, SrvErrorException
Set the value of Attribut ElemKind.- Parameters:
value
- The value to be set.- Throws:
InoNetException
SrvErrorException
-
getElemId
int getElemId() throws InoNetException, SrvErrorException
Returns the proxy's referenced element ID.- Throws:
InoNetException
SrvErrorException
-
setElemId
void setElemId(int value) throws InoNetException, SrvErrorException
Set the value of Attribut ElemId.- Parameters:
value
- The value to be set.- Throws:
InoNetException
SrvErrorException
-
getElemIdReference
java.lang.String getElemIdReference() throws InoNetException, SrvErrorException
Returns the proxy's referenced element ID name.- Throws:
InoNetException
SrvErrorException
-
setElemIdReference
void setElemIdReference(java.lang.String value) throws InoNetException, SrvErrorException
Set the value of Attribut ElemIdReference.- Parameters:
value
- The value to be set.- Throws:
InoNetException
SrvErrorException
-
getElemUUID
java.lang.String getElemUUID() throws InoNetException, SrvErrorException
Contains a UUID option.- Throws:
InoNetException
SrvErrorException
-
setElemUUID
void setElemUUID(java.lang.String value) throws InoNetException, SrvErrorException
Set the value of Attribut ElemUUID.- Parameters:
value
- The value to be set.- Throws:
InoNetException
SrvErrorException
-
getElemBitmapName
java.lang.String getElemBitmapName() throws InoNetException, SrvErrorException
Returns the proxy's bitmap name. This is normally the bitmap name of the referenced element.- Throws:
InoNetException
SrvErrorException
-
setElemBitmapName
void setElemBitmapName(java.lang.String value) throws InoNetException, SrvErrorException
Set the value of Attribut ElemBitmapName.- Parameters:
value
- The value to be set.- Throws:
InoNetException
SrvErrorException
-
getHREF
java.lang.String getHREF() throws InoNetException, SrvErrorException
Returns the proxy referenced element's reference. Free for use.- Throws:
InoNetException
SrvErrorException
-
setHREF
void setHREF(java.lang.String value) throws InoNetException, SrvErrorException
Set the value of Attribut HREF.- Parameters:
value
- The value to be set.- Throws:
InoNetException
SrvErrorException
-
-