Search in sources :

Example 6 with XtendEnum

use of org.eclipse.xtend.core.xtend.XtendEnum in project xtext-xtend by eclipse.

the class JavaConverterTest method testEnumCase.

@Test
public void testEnumCase() throws Exception {
    XtendEnum enum_ = this.toValidXtendEnum("public enum MyEnum { NEW,OLD }");
    XtendMember _get = enum_.getMembers().get(0);
    Assert.assertEquals(JvmVisibility.PUBLIC, ((XtendEnumLiteral) _get).getVisibility());
    XtendMember _get_1 = enum_.getMembers().get(1);
    Assert.assertEquals(JvmVisibility.PUBLIC, ((XtendEnumLiteral) _get_1).getVisibility());
}
Also used : XtendMember(org.eclipse.xtend.core.xtend.XtendMember) XtendEnum(org.eclipse.xtend.core.xtend.XtendEnum) Test(org.junit.Test)

Example 7 with XtendEnum

use of org.eclipse.xtend.core.xtend.XtendEnum in project xtext-xtend by eclipse.

the class CompilationUnitImpl method toXtendTypeDeclaration.

public XtendTypeDeclarationImpl<? extends XtendTypeDeclaration> toXtendTypeDeclaration(final XtendTypeDeclaration delegate) {
    final Function1<XtendTypeDeclaration, XtendTypeDeclarationImpl<? extends XtendTypeDeclaration>> _function = (XtendTypeDeclaration it) -> {
        XtendTypeDeclarationImpl<? extends XtendTypeDeclaration> _switchResult = null;
        boolean _matched = false;
        if (delegate instanceof XtendClass) {
            _matched = true;
            XtendClassDeclarationImpl _xtendClassDeclarationImpl = new XtendClassDeclarationImpl();
            final Procedure1<XtendClassDeclarationImpl> _function_1 = (XtendClassDeclarationImpl it_1) -> {
                it_1.setDelegate(((XtendClass) delegate));
                it_1.setCompilationUnit(this);
            };
            _switchResult = ObjectExtensions.<XtendClassDeclarationImpl>operator_doubleArrow(_xtendClassDeclarationImpl, _function_1);
        }
        if (!_matched) {
            if (delegate instanceof XtendInterface) {
                _matched = true;
                XtendInterfaceDeclarationImpl _xtendInterfaceDeclarationImpl = new XtendInterfaceDeclarationImpl();
                final Procedure1<XtendInterfaceDeclarationImpl> _function_1 = (XtendInterfaceDeclarationImpl it_1) -> {
                    it_1.setDelegate(((XtendInterface) delegate));
                    it_1.setCompilationUnit(this);
                };
                _switchResult = ObjectExtensions.<XtendInterfaceDeclarationImpl>operator_doubleArrow(_xtendInterfaceDeclarationImpl, _function_1);
            }
        }
        if (!_matched) {
            if (delegate instanceof XtendAnnotationType) {
                _matched = true;
                XtendAnnotationTypeDeclarationImpl _xtendAnnotationTypeDeclarationImpl = new XtendAnnotationTypeDeclarationImpl();
                final Procedure1<XtendAnnotationTypeDeclarationImpl> _function_1 = (XtendAnnotationTypeDeclarationImpl it_1) -> {
                    it_1.setDelegate(((XtendAnnotationType) delegate));
                    it_1.setCompilationUnit(this);
                };
                _switchResult = ObjectExtensions.<XtendAnnotationTypeDeclarationImpl>operator_doubleArrow(_xtendAnnotationTypeDeclarationImpl, _function_1);
            }
        }
        if (!_matched) {
            if (delegate instanceof XtendEnum) {
                _matched = true;
                XtendEnumerationDeclarationImpl _xtendEnumerationDeclarationImpl = new XtendEnumerationDeclarationImpl();
                final Procedure1<XtendEnumerationDeclarationImpl> _function_1 = (XtendEnumerationDeclarationImpl it_1) -> {
                    it_1.setDelegate(((XtendEnum) delegate));
                    it_1.setCompilationUnit(this);
                };
                _switchResult = ObjectExtensions.<XtendEnumerationDeclarationImpl>operator_doubleArrow(_xtendEnumerationDeclarationImpl, _function_1);
            }
        }
        return _switchResult;
    };
    return this.<XtendTypeDeclaration, XtendTypeDeclarationImpl<? extends XtendTypeDeclaration>>getOrCreate(delegate, _function);
}
Also used : XtendTypeDeclarationImpl(org.eclipse.xtend.core.macro.declaration.XtendTypeDeclarationImpl) XtendClassDeclarationImpl(org.eclipse.xtend.core.macro.declaration.XtendClassDeclarationImpl) XtendAnnotationType(org.eclipse.xtend.core.xtend.XtendAnnotationType) XtendClass(org.eclipse.xtend.core.xtend.XtendClass) XtendInterface(org.eclipse.xtend.core.xtend.XtendInterface) XtendInterfaceDeclarationImpl(org.eclipse.xtend.core.macro.declaration.XtendInterfaceDeclarationImpl) Procedure1(org.eclipse.xtext.xbase.lib.Procedures.Procedure1) XtendTypeDeclaration(org.eclipse.xtend.core.xtend.XtendTypeDeclaration) XtendEnum(org.eclipse.xtend.core.xtend.XtendEnum) XtendAnnotationTypeDeclarationImpl(org.eclipse.xtend.core.macro.declaration.XtendAnnotationTypeDeclarationImpl) XtendEnumerationDeclarationImpl(org.eclipse.xtend.core.macro.declaration.XtendEnumerationDeclarationImpl)

Example 8 with XtendEnum

use of org.eclipse.xtend.core.xtend.XtendEnum in project xtext-xtend by eclipse.

the class InferredJvmModelTest method test_bug475337.

@Test
public void test_bug475337() throws Exception {
    Resource content = file("enum Foo {  bar, ,baz }", false, false).eResource();
    XtendEnum xtendEnumType = (XtendEnum) ((XtendFile) content.getContents().get(0)).getXtendTypes().get(0);
    assertEquals(3, xtendEnumType.getMembers().size());
    assertNull(((XtendEnumLiteral) xtendEnumType.getMembers().get(1)).getName());
    // check jvm model
    JvmEnumerationType enumType = (JvmEnumerationType) content.getContents().get(1);
    assertEquals(2, enumType.getLiterals().size());
    assertEquals("bar", enumType.getLiterals().get(0).getSimpleName());
    assertEquals("baz", enumType.getLiterals().get(1).getSimpleName());
}
Also used : XtendFile(org.eclipse.xtend.core.xtend.XtendFile) Resource(org.eclipse.emf.ecore.resource.Resource) XtendEnum(org.eclipse.xtend.core.xtend.XtendEnum) JvmEnumerationType(org.eclipse.xtext.common.types.JvmEnumerationType) Test(org.junit.Test)

Aggregations

XtendEnum (org.eclipse.xtend.core.xtend.XtendEnum)8 XtendAnnotationType (org.eclipse.xtend.core.xtend.XtendAnnotationType)4 XtendClass (org.eclipse.xtend.core.xtend.XtendClass)4 XtendInterface (org.eclipse.xtend.core.xtend.XtendInterface)4 Test (org.junit.Test)4 XtendMember (org.eclipse.xtend.core.xtend.XtendMember)3 XtendField (org.eclipse.xtend.core.xtend.XtendField)2 XtendParameter (org.eclipse.xtend.core.xtend.XtendParameter)2 JvmEnumerationType (org.eclipse.xtext.common.types.JvmEnumerationType)2 EObject (org.eclipse.emf.ecore.EObject)1 EPackage (org.eclipse.emf.ecore.EPackage)1 InternalEObject (org.eclipse.emf.ecore.InternalEObject)1 Resource (org.eclipse.emf.ecore.resource.Resource)1 XtendAnnotationTypeDeclarationImpl (org.eclipse.xtend.core.macro.declaration.XtendAnnotationTypeDeclarationImpl)1 XtendClassDeclarationImpl (org.eclipse.xtend.core.macro.declaration.XtendClassDeclarationImpl)1 XtendEnumerationDeclarationImpl (org.eclipse.xtend.core.macro.declaration.XtendEnumerationDeclarationImpl)1 XtendInterfaceDeclarationImpl (org.eclipse.xtend.core.macro.declaration.XtendInterfaceDeclarationImpl)1 XtendTypeDeclarationImpl (org.eclipse.xtend.core.macro.declaration.XtendTypeDeclarationImpl)1 RichString (org.eclipse.xtend.core.xtend.RichString)1 RichStringLiteral (org.eclipse.xtend.core.xtend.RichStringLiteral)1