Package com.mountainminds.eclemma.core

Examples of com.mountainminds.eclemma.core.ICorePreferences


   *           may be thrown by implementations
   */
  private void addCoverageAgent(ILaunchConfigurationWorkingCopy workingcopy,
      ICoverageLaunch launch) throws CoreException {
    final AgentOptions options = new AgentOptions();
    final ICorePreferences preferences = EclEmmaCorePlugin.getInstance()
        .getPreferences();
    options.setIncludes(preferences.getAgentIncludes());
    options.setExcludes(preferences.getAgentExcludes());
    options.setExclClassloader(preferences.getAgentExclClassloader());
    options.setDestfile(launch.getExecutionDataFile().toOSString());
    try {
      final URL agentfileurl = FileLocator.toFileURL(AgentJar.getResource());
      final File agentfile = new Path(agentfileurl.getPath()).toFile();
      addVMArgument(workingcopy, options.getVMArgument(agentfile));
View Full Code Here

TOP

Related Classes of com.mountainminds.eclemma.core.ICorePreferences

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.