Package org.erlide.engine.model

Examples of org.erlide.engine.model.IErlModel.open()


        final Set<IErlModule> modules = Sets.newHashSet();
        if (selection instanceof IStructuredSelection) {
            final IStructuredSelection structuredSelection = (IStructuredSelection) selection;
            final IErlModel model = ErlangEngine.getInstance().getModel();
            try {
                model.open(null);
                for (final Object i : structuredSelection.toList()) {
                    if (i instanceof IResource) {
                        final IResource r = (IResource) i;
                        modules.addAll(DialyzerUtils.collectModulesFromResource(model, r));
                    }
View Full Code Here


    }
    erlProject.dispose();
    IErlModel _model = this.getModel();
    _model.resourceChanged(null);
    IErlModel _model_1 = this.getModel();
    _model_1.open(null);
  }
 
  public IErlModule createModuleFromText(final String name, final String initialText) {
    IErlModel _model = this.getModel();
    IErlModel _model_1 = this.getModel();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.