Package org.apache.beehive.netui.compiler.typesystem

Examples of org.apache.beehive.netui.compiler.typesystem.TypesystemElement


        return ( com.sun.mirror.declaration.AnnotationMirror ) super.getDelegate();
    }
   
    public TypeDeclaration getContainingType()
    {
        TypesystemElement containingDeclaration = _containingElement;
       
        while ( containingDeclaration instanceof AnnotationInstance )
        {
            containingDeclaration = ( ( AnnotationInstance ) containingDeclaration ).getContainingType();
        }
       
        assert containingDeclaration != null;
        assert containingDeclaration instanceof MemberDeclaration : containingDeclaration.getClass().getName();
        return CompilerUtils.getOuterClass( ( MemberDeclaration ) containingDeclaration );
    }
View Full Code Here


        return ( com.sun.mirror.declaration.AnnotationMirror ) super.getDelegate();
    }
   
    public TypeDeclaration getContainingType()
    {
        TypesystemElement containingDeclaration = _containingElement;
       
        while ( containingDeclaration instanceof AnnotationInstance )
        {
            containingDeclaration = ( ( AnnotationInstance ) containingDeclaration ).getContainingType();
        }
       
        assert containingDeclaration != null;
        assert containingDeclaration instanceof MemberDeclaration : containingDeclaration.getClass().getName();
        return CompilerUtils.getOuterClass( ( MemberDeclaration ) containingDeclaration );
    }
View Full Code Here

TOP

Related Classes of org.apache.beehive.netui.compiler.typesystem.TypesystemElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.