/*- * ============LICENSE_START========================================== * OPENECOMP - DCAE * =================================================================== * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. * =================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ============LICENSE_END============================================ */ /** */ package org.openecomp.ncomp.core.logs.impl; import org.openecomp.ncomp.core.logs.LogFile; import org.openecomp.ncomp.core.logs.LogPattern; import org.openecomp.ncomp.core.logs.LogsPackage; 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.MinimalEObjectImpl; import org.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; /** * * An implementation of the model object 'Log File'. * *

* The following features are implemented: *

* * * @generated */ public class LogFileImpl extends MinimalEObjectImpl.Container implements LogFile { /** * The default value of the '{@link #getFilename() Filename}' attribute. * * * @see #getFilename() * @generated * @ordered */ protected static final String FILENAME_EDEFAULT = null; /** * The cached value of the '{@link #getFilename() Filename}' attribute. * * * @see #getFilename() * @generated * @ordered */ protected String filename = FILENAME_EDEFAULT; /** * The cached value of the '{@link #getPatterns() Patterns}' containment reference list. * * * @see #getPatterns() * @generated * @ordered */ protected EList patterns; /** * * * @generated */ protected LogFileImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return LogsPackage.Literals.LOG_FILE; } /** * * * @generated */ public String getFilename() { return filename; } /** * * * @generated */ public void setFilename(String newFilename) { String oldFilename = filename; filename = newFilename; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, LogsPackage.LOG_FILE__FILENAME, oldFilename, filename)); } /** * * * @generated */ public EList getPatterns() { if (patterns == null) { patterns = new EObjectContainmentEList(LogPattern.class, this, LogsPackage.LOG_FILE__PATTERNS); } return patterns; } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case LogsPackage.LOG_FILE__PATTERNS: return ((InternalEList)getPatterns()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case LogsPackage.LOG_FILE__FILENAME: return getFilename(); case LogsPackage.LOG_FILE__PATTERNS: return getPatterns(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case LogsPackage.LOG_FILE__FILENAME: setFilename((String)newValue); return; case LogsPackage.LOG_FILE__PATTERNS: getPatterns().clear(); getPatterns().addAll((Collection)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case LogsPackage.LOG_FILE__FILENAME: setFilename(FILENAME_EDEFAULT); return; case LogsPackage.LOG_FILE__PATTERNS: getPatterns().clear(); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case LogsPackage.LOG_FILE__FILENAME: return FILENAME_EDEFAULT == null ? filename != null : !FILENAME_EDEFAULT.equals(filename); case LogsPackage.LOG_FILE__PATTERNS: return patterns != null && !patterns.isEmpty(); } return super.eIsSet(featureID); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (filename: "); result.append(filename); result.append(')'); return result.toString(); } } //LogFileImpl