本文整理汇总了Java中org.eclipse.xtext.common.types.TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE属性的典型用法代码示例。如果您正苦于以下问题:Java TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE属性的具体用法?Java TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE怎么用?Java TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.eclipse.xtext.common.types.TypesPackage
的用法示例。
在下文中一共展示了TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE属性的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setComponentType
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setComponentType(JvmComponentType newComponentType)
{
if (newComponentType != eInternalContainer() || (eContainerFeatureID() != TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE && newComponentType != null))
{
if (EcoreUtil.isAncestor(this, newComponentType))
throw new IllegalArgumentException("Recursive containment not allowed for " + toString());
NotificationChain msgs = null;
if (eInternalContainer() != null)
msgs = eBasicRemoveFromContainer(msgs);
if (newComponentType != null)
msgs = ((InternalEObject)newComponentType).eInverseAdd(this, TypesPackage.JVM_COMPONENT_TYPE__ARRAY_TYPE, JvmComponentType.class, msgs);
msgs = basicSetComponentType(newComponentType, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE, newComponentType, newComponentType));
}
示例2: eInverseAdd
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs)
{
switch (featureID)
{
case TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE:
if (eInternalContainer() != null)
msgs = eBasicRemoveFromContainer(msgs);
return basicSetComponentType((JvmComponentType)otherEnd, msgs);
}
return super.eInverseAdd(otherEnd, featureID, msgs);
}
示例3: eInverseRemove
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs)
{
switch (featureID)
{
case TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE:
return basicSetComponentType(null, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
示例4: eBasicRemoveFromContainerFeature
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eBasicRemoveFromContainerFeature(NotificationChain msgs)
{
switch (eContainerFeatureID())
{
case TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE:
return eInternalContainer().eInverseRemove(this, TypesPackage.JVM_COMPONENT_TYPE__ARRAY_TYPE, JvmComponentType.class, msgs);
}
return super.eBasicRemoveFromContainerFeature(msgs);
}
示例5: eGet
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType)
{
switch (featureID)
{
case TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE:
return getComponentType();
}
return super.eGet(featureID, resolve, coreType);
}
示例6: eSet
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue)
{
switch (featureID)
{
case TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE:
setComponentType((JvmComponentType)newValue);
return;
}
super.eSet(featureID, newValue);
}
示例7: eUnset
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID)
{
switch (featureID)
{
case TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE:
setComponentType((JvmComponentType)null);
return;
}
super.eUnset(featureID);
}
示例8: eIsSet
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID)
{
switch (featureID)
{
case TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE:
return getComponentType() != null;
}
return super.eIsSet(featureID);
}
示例9: getComponentType
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public JvmComponentType getComponentType()
{
if (eContainerFeatureID() != TypesPackage.JVM_ARRAY_TYPE__COMPONENT_TYPE) return null;
return (JvmComponentType)eInternalContainer();
}