![JAR search and dependency download from the Maven repository](/logo.png)
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
/**
*/
package kieker.analysis.model.analysisMetaModel.impl;
import java.util.Collection;
import kieker.analysis.model.analysisMetaModel.MIAnalysisComponent;
import kieker.analysis.model.analysisMetaModel.MIAnalysisMetaModelPackage;
import kieker.analysis.model.analysisMetaModel.MIProperty;
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;
/**
*
* 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 name;
}
/**
*
*
*
* @generated
*/
public void setName(String newName) {
String oldName = name;
name = newName;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__NAME, oldName, name));
}
/**
*
*
*
* @generated
*/
public String getClassname() {
return classname;
}
/**
*
*
*
* @generated
*/
public void setClassname(String newClassname) {
String oldClassname = classname;
classname = newClassname;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__CLASSNAME, oldClassname, classname));
}
/**
*
*
*
* @generated
*/
public EList getProperties() {
if (properties == null) {
properties = new EObjectContainmentEList(MIProperty.class, this, MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__PROPERTIES);
}
return properties;
}
/**
*
*
*
* @generated
*/
public String getId() {
return id;
}
/**
*
*
*
* @generated
*/
public void setId(String newId) {
String oldId = id;
id = newId;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__ID, oldId, id));
}
/**
*
*
*
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__PROPERTIES:
return ((InternalEList>) getProperties()).basicRemove(otherEnd, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
*
*
*
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__NAME:
return getName();
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__CLASSNAME:
return getClassname();
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__PROPERTIES:
return getProperties();
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__ID:
return getId();
}
return super.eGet(featureID, resolve, coreType);
}
/**
*
*
*
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__NAME:
setName((String) newValue);
return;
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__CLASSNAME:
setClassname((String) newValue);
return;
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__PROPERTIES:
getProperties().clear();
getProperties().addAll((Collection extends MIProperty>) newValue);
return;
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__ID:
setId((String) newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
*
*
*
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__NAME:
setName(NAME_EDEFAULT);
return;
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__CLASSNAME:
setClassname(CLASSNAME_EDEFAULT);
return;
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__PROPERTIES:
getProperties().clear();
return;
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__ID:
setId(ID_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
*
*
*
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__NAME:
return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__CLASSNAME:
return CLASSNAME_EDEFAULT == null ? classname != null : !CLASSNAME_EDEFAULT.equals(classname);
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__PROPERTIES:
return properties != null && !properties.isEmpty();
case MIAnalysisMetaModelPackage.ANALYSIS_COMPONENT__ID:
return ID_EDEFAULT == null ? id != null : !ID_EDEFAULT.equals(id);
}
return super.eIsSet(featureID);
}
/**
*
*
*
* @generated
*/
@Override
public String toString() {
if (eIsProxy())
return super.toString();
StringBuffer result = new StringBuffer(super.toString());
result.append(" (name: ");
result.append(name);
result.append(", classname: ");
result.append(classname);
result.append(", id: ");
result.append(id);
result.append(')');
return result.toString();
}
} // MAnalysisComponent
© 2015 - 2025 Weber Informatics LLC | Privacy Policy