All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.esmf.metamodel.impl.DefaultEntity Maven / Gradle / Ivy

There is a newer version: 2.9.5
Show newest version
/*
 * Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH
 *
 * See the AUTHORS file(s) distributed with this work for additional
 * information regarding authorship.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
 *
 * SPDX-License-Identifier: MPL-2.0
 */
package org.eclipse.esmf.metamodel.impl;

import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;

import org.eclipse.esmf.aspectmodel.loader.MetaModelBaseAttributes;
import org.eclipse.esmf.aspectmodel.loader.ModelElementFactory;
import org.eclipse.esmf.aspectmodel.urn.AspectModelUrn;
import org.eclipse.esmf.aspectmodel.visitor.AspectVisitor;
import org.eclipse.esmf.metamodel.ComplexType;
import org.eclipse.esmf.metamodel.Entity;
import org.eclipse.esmf.metamodel.Property;

public class DefaultEntity extends DefaultComplexType implements Entity {
   public static DefaultEntity createDefaultEntity( final MetaModelBaseAttributes metaModelBaseAttributes,
         final List properties, @SuppressWarnings( "checkstyle:ParameterName" ) final Optional extends_ ) {
      return new DefaultEntity( metaModelBaseAttributes, properties, extends_, Collections.emptyList(), null );
   }

   public DefaultEntity(
         final MetaModelBaseAttributes metaModelBaseAttributes,
         final List properties ) {
      this( metaModelBaseAttributes, properties, Optional.empty(), Collections.emptyList(), null );
   }

   public DefaultEntity(
         final MetaModelBaseAttributes metaModelBaseAttributes,
         final List properties,
         @SuppressWarnings( "checkstyle:ParameterName" ) final Optional extends_,
         final List extendingElements,
         final ModelElementFactory loadedElements ) {
      super( metaModelBaseAttributes, properties, extends_, extendingElements, loadedElements );
   }

   /**
    * Accepts an Aspect visitor
    *
    * @param visitor The visitor to accept
    * @param  The result type of the traversal operation
    * @param  The context of the visitor traversal
    */
   @Override
   public  T accept( final AspectVisitor visitor, final C context ) {
      return visitor.visitEntity( this, context );
   }

   @Override
   public boolean equals( final Object o ) {
      if ( this == o ) {
         return true;
      }
      if ( o == null || getClass() != o.getClass() ) {
         return false;
      }
      final DefaultEntity that = (DefaultEntity) o;
      return Objects.equals( properties, that.properties ) && Objects.equals( extends_, that.extends_ )
            && Objects.equals( extendingElements, that.extendingElements )
            && Objects.equals( baseAttributes, that.baseAttributes );
   }

   @Override
   public int hashCode() {
      return Objects.hash( properties, extends_, extendingElements, baseAttributes );
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy