blob: c3b2cb6fcbd2c7e54b2b90e690c966f2b2ae33fd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.j2ee.webapplication.internal.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.jst.j2ee.webapplication.ErrorCodeErrorPage;
import org.eclipse.jst.j2ee.webapplication.WebapplicationPackage;
/**
* @generated
*/
public class ErrorCodeErrorPageImpl extends ErrorPageImpl implements ErrorCodeErrorPage {
/**
* The default value of the '{@link #getErrorCode() <em>Error Code</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getErrorCode()
* @generated
* @ordered
*/
protected static final String ERROR_CODE_EDEFAULT = null;
/**
* @generated This field/method will be replaced during code generation.
*/
/**
* @generated This field/method will be replaced during code generation.
*/
protected String errorCode = ERROR_CODE_EDEFAULT;
public ErrorCodeErrorPageImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return WebapplicationPackage.Literals.ERROR_CODE_ERROR_PAGE;
}
/**
* isErrorCode method comment.
*/
@Override
public boolean isErrorCode() {
return true;
}
/**
* @generated This field/method will be replaced during code generation
* The error-code contains an HTTP error code, ex: 404
*/
public String getErrorCode() {
return errorCode;
}
/**
* @generated This field/method will be replaced during code generation.
*/
public void setErrorCode(String newErrorCode) {
String oldErrorCode = errorCode;
errorCode = newErrorCode;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, WebapplicationPackage.ERROR_CODE_ERROR_PAGE__ERROR_CODE, oldErrorCode, errorCode));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case WebapplicationPackage.ERROR_CODE_ERROR_PAGE__ERROR_CODE:
return getErrorCode();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case WebapplicationPackage.ERROR_CODE_ERROR_PAGE__ERROR_CODE:
setErrorCode((String)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case WebapplicationPackage.ERROR_CODE_ERROR_PAGE__ERROR_CODE:
setErrorCode(ERROR_CODE_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case WebapplicationPackage.ERROR_CODE_ERROR_PAGE__ERROR_CODE:
return ERROR_CODE_EDEFAULT == null ? errorCode != null : !ERROR_CODE_EDEFAULT.equals(errorCode);
}
return super.eIsSet(featureID);
}
/**
* @generated This field/method will be replaced during code generation.
*/
@Override
public String toString() {
if (eIsProxy()) return super.toString();
StringBuffer result = new StringBuffer(super.toString());
result.append(" (errorCode: "); //$NON-NLS-1$
result.append(errorCode);
result.append(')');
return result.toString();
}
}