Java Code Examples for org.eclipse.xtext.xtype.XtypePackage#XIMPORT_SECTION__IMPORT_DECLARATIONS
The following examples show how to use
org.eclipse.xtext.xtype.XtypePackage#XIMPORT_SECTION__IMPORT_DECLARATIONS .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: XImportSectionImpl.java From xtext-extras with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<XImportDeclaration> getImportDeclarations() { if (importDeclarations == null) { importDeclarations = new EObjectContainmentEList<XImportDeclaration>(XImportDeclaration.class, this, XtypePackage.XIMPORT_SECTION__IMPORT_DECLARATIONS); } return importDeclarations; }
Example 2
Source File: XImportSectionImpl.java From xtext-extras with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case XtypePackage.XIMPORT_SECTION__IMPORT_DECLARATIONS: return ((InternalEList<?>)getImportDeclarations()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); }
Example 3
Source File: XImportSectionImpl.java From xtext-extras with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case XtypePackage.XIMPORT_SECTION__IMPORT_DECLARATIONS: return getImportDeclarations(); } return super.eGet(featureID, resolve, coreType); }
Example 4
Source File: XImportSectionImpl.java From xtext-extras with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case XtypePackage.XIMPORT_SECTION__IMPORT_DECLARATIONS: getImportDeclarations().clear(); getImportDeclarations().addAll((Collection<? extends XImportDeclaration>)newValue); return; } super.eSet(featureID, newValue); }
Example 5
Source File: XImportSectionImpl.java From xtext-extras with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case XtypePackage.XIMPORT_SECTION__IMPORT_DECLARATIONS: getImportDeclarations().clear(); return; } super.eUnset(featureID); }
Example 6
Source File: XImportSectionImpl.java From xtext-extras with Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case XtypePackage.XIMPORT_SECTION__IMPORT_DECLARATIONS: return importDeclarations != null && !importDeclarations.isEmpty(); } return super.eIsSet(featureID); }