Package org.eclipse.handly.model.impl

Examples of org.eclipse.handly.model.impl.HandleDeltaBuilder


    private class NotifyingReconcileOperation extends SourceFile.ReconcileOperation {
        @Override
        public void reconcile(final Object ast, final NonExpiringSnapshot snapshot,
                final boolean forced) throws CoreException {
            final HandleDeltaBuilder deltaBuilder = new HandleDeltaBuilder(ErlSource.this);
            super.reconcile(ast, snapshot, forced);
            deltaBuilder.buildDelta();
            if (!deltaBuilder.getDelta().isEmpty()) {
                final ElementChangeEvent event = new ElementChangeEvent(
                        IElementChangeEvent.POST_RECONCILE, deltaBuilder.getDelta());
                ErlModelManager.INSTANCE.fireElementChangeEvent(event);
            }
        }
View Full Code Here

TOP

Related Classes of org.eclipse.handly.model.impl.HandleDeltaBuilder

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.