Package org.eclipse.cdt.internal.core.dom.rewrite.ASTModification

Examples of org.eclipse.cdt.internal.core.dom.rewrite.ASTModification.ModificationKind


        Map<ModificationKind, List<ASTModification>> map = classifiedModifications.get(node);
        if (map == null) {
          map = new TreeMap<ModificationKind, List<ASTModification>>();
          classifiedModifications.put(node, map);
        }
        final ModificationKind kind = modification.getKind();
        List<ASTModification> list = map.get(kind);
        if (list == null) {
          list = new ArrayList<ASTModification>(2);
          map.put(kind, list);
        }
View Full Code Here

TOP

Related Classes of org.eclipse.cdt.internal.core.dom.rewrite.ASTModification.ModificationKind

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.