Examples of eIsProxy()


Examples of OntoUML.Classifier.eIsProxy()

   * <!-- end-user-doc -->
   * @generated
   */
  public Classifier getGeneral() {
    Classifier general = basicGetGeneral();
    return general != null && general.eIsProxy() ? (Classifier)eResolveProxy((InternalEObject)general) : general;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
View Full Code Here

Examples of OntoUML.DirectedBinaryRelationship.eIsProxy()

   * <!-- end-user-doc -->
   * @generated
   */
  public DirectedBinaryRelationship getSource() {
    DirectedBinaryRelationship source = basicGetSource();
    return source != null && source.eIsProxy() ? (DirectedBinaryRelationship)eResolveProxy((InternalEObject)source) : source;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
View Full Code Here

Examples of OntoUML.DirectedBinaryRelationship.eIsProxy()

   * <!-- end-user-doc -->
   * @generated
   */
  public DirectedBinaryRelationship getTarget() {
    DirectedBinaryRelationship target = basicGetTarget();
    return target != null && target.eIsProxy() ? (DirectedBinaryRelationship)eResolveProxy((InternalEObject)target) : target;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
View Full Code Here

Examples of OntoUML.Type.eIsProxy()

   * <!-- end-user-doc -->
   * @generated
   */
  public Type getEndType() {
    Type endType = basicGetEndType();
    return endType != null && endType.eIsProxy() ? (Type)eResolveProxy((InternalEObject)endType) : endType;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
View Full Code Here

Examples of de.itemis.tooling.xturtle.xturtle.Resource.eIsProxy()

  public boolean createReferenceDescriptions(final EObject from,
      URI exportedContainerURI, IAcceptor<IReferenceDescription> acceptor) {
    if(from instanceof ResourceRef){
      //add to the index pointers to ALL external subjects that have the given qualified name
      Resource ref = ((ResourceRef) from).getRef();
      if(ref !=null && !ref.eIsProxy()){
        URI fromUri=from.eResource().getURI();
        URI containerUri = getExportedSubjectUri(from);
        QualifiedName name = getQualifiedNameProvider().getFullyQualifiedName(ref);
        IResourceDescriptions index = resourceDescriptionsProvider.getResourceDescriptions(from.eResource().getResourceSet());
        Iterable<IEObjectDescription> matches = index.getExportedObjectsByType(XturtlePackage.Literals.RESOURCE);//, name, false);
View Full Code Here

Examples of eu.admire.dispel.core.ProcessingElementDefinition.eIsProxy()

            && ref.getTarget() instanceof ProcessingElementDefinition) {

          ProcessingElementDefinition pe = (ProcessingElementDefinition) ref
              .getTarget();

          if (pe != null && !pe.eIsProxy()) {

            ProcessingElementInstance instance = pe
                .createInstance();

            var.setValue(instance);
View Full Code Here

Examples of eu.admire.dispel.types.DispelType.eIsProxy()

              "type");

          DispelType pe = (DispelType) peImp
              .eGet(eSF, false);
         
          if (pe.eIsProxy() && processingElements != null) {
           
            String[] fragments = EcoreUtil.getURI(pe).fragment().split("_");
         
            for (ProcessingElementDefinition nPe : processingElements) {
View Full Code Here

Examples of fr.obeo.releng.targetplatform.Environment.eIsProxy()

   * <!-- end-user-doc -->
   * @generated
   */
  public Environment getEnvironment() {
    Environment environment = basicGetEnvironment();
    return environment != null && environment.eIsProxy() ? (Environment)eResolveProxy((InternalEObject)environment) : environment;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
View Full Code Here

Examples of org.eclipse.emf.ecore.EObject.eIsProxy()

                mixedTargets.push(null);
                types.push(simpleFeature);
                text = new StringBuffer();
              }
            }
            else if (!childObject.eIsProxy())
            {
              text = new StringBuffer();
            }
          }
        }
View Full Code Here

Examples of org.eclipse.emf.ecore.EObject.eIsProxy()

  {
    boolean result = true;
    for (EContentsEList.FeatureIterator<EObject> i = (EContentsEList.FeatureIterator<EObject>)eObject.eCrossReferences().iterator(); i.hasNext(); )
    {
      EObject eCrossReferenceObject = i.next();
      if (eCrossReferenceObject.eIsProxy())
      {
        result = false;
        if (diagnostics != null)
        {
          diagnostics.add
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.