本文整理汇总了Java中org.eclipse.xtext.xtype.XtypePackage.XIMPORT_SECTION__IMPORT_DECLARATIONS属性的典型用法代码示例。如果您正苦于以下问题:Java XtypePackage.XIMPORT_SECTION__IMPORT_DECLARATIONS属性的具体用法?Java XtypePackage.XIMPORT_SECTION__IMPORT_DECLARATIONS怎么用?Java XtypePackage.XIMPORT_SECTION__IMPORT_DECLARATIONS使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.eclipse.xtext.xtype.XtypePackage
的用法示例。
在下文中一共展示了XtypePackage.XIMPORT_SECTION__IMPORT_DECLARATIONS属性的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getImportDeclarations
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<XImportDeclaration> getImportDeclarations()
{
if (importDeclarations == null)
{
importDeclarations = new EObjectContainmentEList<XImportDeclaration>(XImportDeclaration.class, this, XtypePackage.XIMPORT_SECTION__IMPORT_DECLARATIONS);
}
return importDeclarations;
}
示例2: eInverseRemove
/**
* <!-- 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);
}
示例3: eGet
/**
* <!-- 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);
}
示例4: eSet
/**
* <!-- 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);
}
示例5: eUnset
/**
* <!-- 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);
}
示例6: eIsSet
/**
* <!-- 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);
}