Package org.eclipse.emf.ecore

Examples of org.eclipse.emf.ecore.InternalEObject


   */
  public XSDTypeDefinition getTypeDefinition()
  {
    if (typeDefinition != null && typeDefinition.eIsProxy())
    {
      InternalEObject oldTypeDefinition = (InternalEObject)typeDefinition;
      typeDefinition = (XSDTypeDefinition)eResolveProxy(oldTypeDefinition);
      if (typeDefinition != oldTypeDefinition)
      {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.RESOLVE, WSDLPackage.PART__TYPE_DEFINITION, oldTypeDefinition, typeDefinition));
View Full Code Here


   */
  public XSDElementDeclaration getElementDeclaration()
  {
    if (elementDeclaration != null && elementDeclaration.eIsProxy())
    {
      InternalEObject oldElementDeclaration = (InternalEObject)elementDeclaration;
      elementDeclaration = (XSDElementDeclaration)eResolveProxy(oldElementDeclaration);
      if (elementDeclaration != oldElementDeclaration)
      {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(
View Full Code Here

   */
  public Message getEMessage()
  {
    if (eMessage != null && eMessage.eIsProxy())
    {
      InternalEObject oldEMessage = (InternalEObject)eMessage;
      eMessage = (Message)eResolveProxy(oldEMessage);
      if (eMessage != oldEMessage)
      {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.RESOLVE, WSDLPackage.PART__EMESSAGE, oldEMessage, eMessage));
View Full Code Here

   */
  public Definition getEDefinition()
  {
    if (eDefinition != null && eDefinition.eIsProxy())
    {
      InternalEObject oldEDefinition = (InternalEObject)eDefinition;
      eDefinition = (Definition)eResolveProxy(oldEDefinition);
      if (eDefinition != oldEDefinition)
      {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.RESOLVE, WSDLPackage.IMPORT__EDEFINITION, oldEDefinition, eDefinition));
View Full Code Here

   */
  public XSDSchema getESchema()
  {
    if (eSchema != null && eSchema.eIsProxy())
    {
      InternalEObject oldESchema = (InternalEObject)eSchema;
      eSchema = (XSDSchema)eResolveProxy(oldESchema);
      if (eSchema != oldESchema)
      {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.RESOLVE, WSDLPackage.IMPORT__ESCHEMA, oldESchema, eSchema));
View Full Code Here

   */
  public Operation getEOperation()
  {
    if (eOperation != null && eOperation.eIsProxy())
    {
      InternalEObject oldEOperation = (InternalEObject)eOperation;
      eOperation = (Operation)eResolveProxy(oldEOperation);
      if (eOperation != oldEOperation)
      {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.RESOLVE, WSDLPackage.BINDING_OPERATION__EOPERATION, oldEOperation, eOperation));
View Full Code Here

   */
  public Fault getEFault()
  {
    if (eFault != null && eFault.eIsProxy())
    {
      InternalEObject oldEFault = (InternalEObject)eFault;
      eFault = (Fault)eResolveProxy(oldEFault);
      if (eFault != oldEFault)
      {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.RESOLVE, WSDLPackage.BINDING_FAULT__EFAULT, oldEFault, eFault));
View Full Code Here

   */
  public Output getEOutput()
  {
    if (eOutput != null && eOutput.eIsProxy())
    {
      InternalEObject oldEOutput = (InternalEObject)eOutput;
      eOutput = (Output)eResolveProxy(oldEOutput);
      if (eOutput != oldEOutput)
      {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.RESOLVE, WSDLPackage.BINDING_OUTPUT__EOUTPUT, oldEOutput, eOutput));
View Full Code Here

   */
  public Part getEPart()
  {
    if (ePart != null && ePart.eIsProxy())
    {
      InternalEObject oldEPart = (InternalEObject)ePart;
      ePart = (Part)eResolveProxy(oldEPart);
      if (ePart != oldEPart)
      {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.RESOLVE, MIMEPackage.MIME_MIME_XML__EPART, oldEPart, ePart));
View Full Code Here

   */
  public Message getEMessage()
  {
    if (eMessage != null && eMessage.eIsProxy())
    {
      InternalEObject oldEMessage = (InternalEObject)eMessage;
      eMessage = (Message)eResolveProxy(oldEMessage);
      if (eMessage != oldEMessage)
      {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.RESOLVE, WSDLPackage.MESSAGE_REFERENCE__EMESSAGE, oldEMessage, eMessage));
View Full Code Here

TOP

Related Classes of org.eclipse.emf.ecore.InternalEObject

Copyright © 2018 www.massapicom. 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.