kieker.analysis.model.analysisMetaModel.impl.MAnalysisComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kieker Show documentation
Show all versions of kieker Show documentation
Kieker: Application Performance Monitoring and Dynamic Software Analysis
The newest version!
/**
*/
package kieker.analysis.model.analysisMetaModel.impl;
import java.util.Collection;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.EObjectImpl;
import org.eclipse.emf.ecore.util.EObjectContainmentEList;
import org.eclipse.emf.ecore.util.InternalEList;
import kieker.analysis.model.analysisMetaModel.MIAnalysisComponent;
import kieker.analysis.model.analysisMetaModel.MIAnalysisMetaModelPackage;
import kieker.analysis.model.analysisMetaModel.MIProperty;
/**
*
* An implementation of the model object 'Analysis Component'.
*
*
* The following features are implemented:
*
* - {@link kieker.analysis.model.analysisMetaModel.impl.MAnalysisComponent#getName Name}
* - {@link kieker.analysis.model.analysisMetaModel.impl.MAnalysisComponent#getClassname Classname}
* - {@link kieker.analysis.model.analysisMetaModel.impl.MAnalysisComponent#getProperties Properties}
* - {@link kieker.analysis.model.analysisMetaModel.impl.MAnalysisComponent#getId Id}
*
*
*
* @generated
*/
public abstract class MAnalysisComponent extends EObjectImpl implements MIAnalysisComponent {
/**
* The default value of the '{@link #getName() Name}' attribute.
*
*
*
* @see #getName()
* @generated
* @ordered
*/
protected static final String NAME_EDEFAULT = null;
/**
* The cached value of the '{@link #getName() Name}' attribute.
*
*
*
* @see #getName()
* @generated
* @ordered
*/
protected String name = NAME_EDEFAULT;
/**
* The default value of the '{@link #getClassname() Classname}' attribute.
*
*
*
* @see #getClassname()
* @generated
* @ordered
*/
protected static final String CLASSNAME_EDEFAULT = null;
/**
* The cached value of the '{@link #getClassname() Classname}' attribute.
*
*
*
* @see #getClassname()
* @generated
* @ordered
*/
protected String classname = CLASSNAME_EDEFAULT;
/**
* The cached value of the '{@link #getProperties() Properties}' containment reference list.
*
*
*
* @see #getProperties()
* @generated
* @ordered
*/
protected EList properties;
/**
* The default value of the '{@link #getId() Id}' attribute.
*
*
*
* @see #getId()
* @generated
* @ordered
*/
protected static final String ID_EDEFAULT = null;
/**
* The cached value of the '{@link #getId() Id}' attribute.
*
*
*
* @see #getId()
* @generated
* @ordered
*/
protected String id = ID_EDEFAULT;
/**
*
*
*
* @generated
*/
protected MAnalysisComponent() {
super();
}
/**
*
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return MIAnalysisMetaModelPackage.Literals.ANALYSIS_COMPONENT;
}
/**
*
*
*
* @generated
*/
public String getName() {
return this.name;
}
/**
*
*
*
* @generated
*/
public void setName(final String newName) {
final String oldName = this.name;
this.name = newName;
if (this.eNotificationRequired()) {
this.eNotify(new ENotificationImpl(this, Notification.SET, MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__NAME, oldName, this.name));
}
}
/**
*
*
*
* @generated
*/
public String getClassname() {
return this.classname;
}
/**
*
*
*
* @generated
*/
public void setClassname(final String newClassname) {
final String oldClassname = this.classname;
this.classname = newClassname;
if (this.eNotificationRequired()) {
this.eNotify(new ENotificationImpl(this, Notification.SET, MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__CLASSNAME, oldClassname, this.classname));
}
}
/**
*
*
*
* @generated
*/
public EList getProperties() {
if (this.properties == null) {
this.properties = new EObjectContainmentEList<>(MIProperty.class, this, MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__PROPERTIES);
}
return this.properties;
}
/**
*
*
*
* @generated
*/
public String getId() {
return this.id;
}
/**
*
*
*
* @generated
*/
public void setId(final String newId) {
final String oldId = this.id;
this.id = newId;
if (this.eNotificationRequired()) {
this.eNotify(new ENotificationImpl(this, Notification.SET, MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__ID, oldId, this.id));
}
}
/**
*
*
*
* @generated
*/
@Override
public NotificationChain eInverseRemove(final InternalEObject otherEnd, final int featureID, final NotificationChain msgs) {
switch (featureID) {
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__PROPERTIES:
return ((InternalEList>) this.getProperties()).basicRemove(otherEnd, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
*
*
*
* @generated
*/
@Override
public Object eGet(final int featureID, final boolean resolve, final boolean coreType) {
switch (featureID) {
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__NAME:
return this.getName();
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__CLASSNAME:
return this.getClassname();
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__PROPERTIES:
return this.getProperties();
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__ID:
return this.getId();
}
return super.eGet(featureID, resolve, coreType);
}
/**
*
*
*
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(final int featureID, final Object newValue) {
switch (featureID) {
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__NAME:
this.setName((String) newValue);
return;
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__CLASSNAME:
this.setClassname((String) newValue);
return;
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__PROPERTIES:
this.getProperties().clear();
this.getProperties().addAll((Collection extends MIProperty>) newValue);
return;
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__ID:
this.setId((String) newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
*
*
*
* @generated
*/
@Override
public void eUnset(final int featureID) {
switch (featureID) {
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__NAME:
this.setName(NAME_EDEFAULT);
return;
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__CLASSNAME:
this.setClassname(CLASSNAME_EDEFAULT);
return;
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__PROPERTIES:
this.getProperties().clear();
return;
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__ID:
this.setId(ID_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
*
*
*
* @generated
*/
@Override
public boolean eIsSet(final int featureID) {
switch (featureID) {
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__NAME:
return NAME_EDEFAULT == null ? this.name != null : !NAME_EDEFAULT.equals(this.name);
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__CLASSNAME:
return CLASSNAME_EDEFAULT == null ? this.classname != null : !CLASSNAME_EDEFAULT.equals(this.classname);
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__PROPERTIES:
return (this.properties != null) && !this.properties.isEmpty();
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__ID:
return ID_EDEFAULT == null ? this.id != null : !ID_EDEFAULT.equals(this.id);
}
return super.eIsSet(featureID);
}
/**
*
*
*
* @generated
*/
@Override
public String toString() {
if (this.eIsProxy()) {
return super.toString();
}
final StringBuffer result = new StringBuffer(super.toString());
result.append(" (name: ");
result.append(this.name);
result.append(", classname: ");
result.append(this.classname);
result.append(", id: ");
result.append(this.id);
result.append(')');
return result.toString();
}
} // MAnalysisComponent
© 2015 - 2024 Weber Informatics LLC | Privacy Policy