Package ch.uzh.ifi.seal.changedistiller.structuredifferencing.java.JavaStructureNode

Examples of ch.uzh.ifi.seal.changedistiller.structuredifferencing.java.JavaStructureNode.Type


    }

    @Override
    public boolean visit(TypeDeclaration typeDeclaration, CompilationUnitScope scope) {
        int kind = TypeDeclaration.kind(typeDeclaration.modifiers);
        Type type = null;
        switch (kind) {
            case TypeDeclaration.INTERFACE_DECL:
                type = Type.INTERFACE;
                break;
            case TypeDeclaration.CLASS_DECL:
View Full Code Here

TOP

Related Classes of ch.uzh.ifi.seal.changedistiller.structuredifferencing.java.JavaStructureNode.Type

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.