Java Code Examples for org.eclipse.xtext.common.types.JvmInnerTypeReference#setOuter()

The following examples show how to use org.eclipse.xtext.common.types.JvmInnerTypeReference#setOuter() . 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: InnerFunctionTypeReference.java    From xtext-extras with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public JvmTypeReference getEquivalentTypeReference() {
	JvmInnerTypeReference result = getTypesFactory().createJvmInnerTypeReference();
	result.setType(getType());
	result.setOuter((JvmParameterizedTypeReference) outer.toTypeReference());
	for(LightweightTypeReference typeArgument: getTypeArguments()) {
		result.getArguments().add(typeArgument.toTypeReference());
	}
	return result;
}
 
Example 2
Source File: InnerFunctionTypeReference.java    From xtext-extras with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public JvmTypeReference toJavaCompliantTypeReference(IVisibilityHelper visibilityHelper) {
	if (isTypeVisible(visibilityHelper)) {
		JvmInnerTypeReference result = getTypesFactory().createJvmInnerTypeReference();
		result.setType(getType());
		result.setOuter((JvmParameterizedTypeReference) outer.toJavaCompliantTypeReference());
		for(LightweightTypeReference typeArgument: getTypeArguments()) {
			result.getArguments().add(typeArgument.toJavaCompliantTypeReference());
		}
		return result;
	} else {
		return toJavaCompliantTypeReference(getSuperTypes(), visibilityHelper);
	}
}
 
Example 3
Source File: InnerTypeReference.java    From xtext-extras with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public JvmTypeReference toTypeReference() {
	JvmInnerTypeReference result = getTypesFactory().createJvmInnerTypeReference();
	result.setType(getType());
	result.setOuter((JvmParameterizedTypeReference) outer.toTypeReference());
	for(LightweightTypeReference typeArgument: getTypeArguments()) {
		result.getArguments().add(typeArgument.toTypeReference());
	}
	return result;
}
 
Example 4
Source File: InnerTypeReference.java    From xtext-extras with Eclipse Public License 2.0 5 votes vote down vote up
@Override
public JvmTypeReference toJavaCompliantTypeReference(IVisibilityHelper visibilityHelper) {
	if (isTypeVisible(visibilityHelper)) {
		JvmInnerTypeReference result = getTypesFactory().createJvmInnerTypeReference();
		result.setType(getType());
		result.setOuter((JvmParameterizedTypeReference) outer.toJavaCompliantTypeReference());
		for(LightweightTypeReference typeArgument: getTypeArguments()) {
			result.getArguments().add(typeArgument.toJavaCompliantTypeReference());
		}
		return result;
	} else {
		return toJavaCompliantTypeReference(getSuperTypes(), visibilityHelper);
	}
}