Examples of GoArch


Examples of com.googlecode.goclipse.tooling.env.GoArch

  public static GoRoot getEffectiveGoRoot(IProject project) {
    return new GoRoot(getEffectiveValue_NonNull(GoEnvironmentPrefs.GO_ROOT, project, GOROOT));
  }
 
  public static GoArch getEffectiveGoArch(IProject project) {
    return new GoArch(getEffectiveValue_NonNull(GoEnvironmentPrefs.GO_ARCH, project, GOARCH));
  }
View Full Code Here

Examples of com.googlecode.goclipse.tooling.env.GoArch

   * @return {@link GoEnvironment} for given project.
   * @param project - can be null.
   */
  public static GoEnvironment getGoEnvironment(IProject project) {
    GoRoot goRoot = getEffectiveGoRoot(project);
    GoArch goArch = getEffectiveGoArch(project);
    GoOs goOs = getEffectiveGoOs(project);
    GoPath goPath = getEffectiveGoPath(project);
    return new GoEnvironment(goRoot, goArch, goOs, goPath);
  }
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.