Package com.google.code.vimsztool.server

Source Code of com.google.code.vimsztool.server.SzjdeProjectOpen

package com.google.code.vimsztool.server;

import java.io.File;

import com.google.code.vimsztool.compiler.CompilerContextManager;

public class SzjdeProjectOpen extends SzjdeCommand {

  public String execute() {
    String classPathXml = params.get(SzjdeConstants.PARAM_CLASSPATHXML);
    CompilerContextManager ccm = CompilerContextManager.getInstnace();
    File file = new File(classPathXml);
   
    if (!file.exists()) return "";
   
    ccm.loadCompilerContext(classPathXml);
    return "";
  }

}
TOP

Related Classes of com.google.code.vimsztool.server.SzjdeProjectOpen

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.