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

org.eclipse.xsd.impl.XSDNumericFacetImpl Maven / Gradle / Ivy

/**
 * Copyright (c) 2002-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 v2.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v20.html
 * 
 * Contributors: 
 *   IBM - Initial API and implementation
 */
package org.eclipse.xsd.impl;


import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.ENotificationImpl;

import org.eclipse.xsd.XSDNumericFacet;
import org.eclipse.xsd.XSDPackage;


/**
 * 
 * An implementation of the model object 'Numeric Facet'.
 * 
 * 

* The following features are implemented: *

*
    *
  • {@link org.eclipse.xsd.impl.XSDNumericFacetImpl#isValue Value}
  • *
* * @generated */ public class XSDNumericFacetImpl extends XSDFundamentalFacetImpl implements XSDNumericFacet { /** * The default value of the '{@link #isValue() Value}' attribute. * * * @see #isValue() * @generated * @ordered */ protected static final boolean VALUE_EDEFAULT = false; /** * The flag representing the value of the '{@link #isValue() Value}' attribute. * * * @see #isValue() * @generated * @ordered */ protected static final int VALUE_EFLAG = 1 << 8; /** * * * @generated */ protected XSDNumericFacetImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return XSDPackage.Literals.XSD_NUMERIC_FACET; } /** * * * @generated */ @Override public boolean isValue() { return (eFlags & VALUE_EFLAG) != 0; } /** * * * @generated */ @Override public void setValue(boolean newValue) { boolean oldValue = (eFlags & VALUE_EFLAG) != 0; if (newValue) eFlags |= VALUE_EFLAG; else eFlags &= ~VALUE_EFLAG; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, XSDPackage.XSD_NUMERIC_FACET__VALUE, oldValue, newValue)); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case XSDPackage.XSD_NUMERIC_FACET__VALUE: return isValue(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case XSDPackage.XSD_NUMERIC_FACET__VALUE: setValue((Boolean)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case XSDPackage.XSD_NUMERIC_FACET__VALUE: setValue(VALUE_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case XSDPackage.XSD_NUMERIC_FACET__VALUE: return ((eFlags & VALUE_EFLAG) != 0) != VALUE_EDEFAULT; } return super.eIsSet(featureID); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuilder result = new StringBuilder(super.toString()); result.append(" (value: "); result.append((eFlags & VALUE_EFLAG) != 0); result.append(')'); return result.toString(); } @Override public Object getEffectiveValue() { return isValue() ? Boolean.TRUE : Boolean.FALSE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy