Tabnine Logo
IRuntimeClasspathProvider
Code IndexAdd Tabnine to your IDE (free)

How to use
IRuntimeClasspathProvider
in
org.eclipse.jdt.launching

Best Java code snippets using org.eclipse.jdt.launching.IRuntimeClasspathProvider (Showing top 12 results out of 315)

origin: org.eclipse.jdt/org.eclipse.jdt.launching

/**
 * Computes and returns the unresolved source lookup path for the given launch
 * configuration.
 *
 * @param configuration launch configuration
 * @return runtime classpath entries
 * @exception CoreException if unable to compute the source lookup path
 * @since 2.0
 */
public static IRuntimeClasspathEntry[] computeUnresolvedSourceLookupPath(ILaunchConfiguration configuration) throws CoreException {
  return getSourceLookupPathProvider(configuration).computeUnresolvedClasspath(configuration);
}
origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jdt.launching

/**
 * @see IRuntimeClasspathProvider#resolveClasspath(IRuntimeClasspathEntry[], ILaunchConfiguration)
 */
@Override
public IRuntimeClasspathEntry[] resolveClasspath(IRuntimeClasspathEntry[] entries, ILaunchConfiguration configuration) throws CoreException {
  return getProvider().resolveClasspath(entries, configuration);
}
origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jdt.launching

/**
 * @see IRuntimeClasspathProvider#computeUnresolvedClasspath(ILaunchConfiguration)
 */
@Override
public IRuntimeClasspathEntry[] computeUnresolvedClasspath(ILaunchConfiguration configuration) throws CoreException {
  return getProvider().computeUnresolvedClasspath(configuration);
}
origin: org.eclipse.jdt/org.eclipse.jdt.launching

/**
 * @see IRuntimeClasspathProvider#resolveClasspath(IRuntimeClasspathEntry[], ILaunchConfiguration)
 */
@Override
public IRuntimeClasspathEntry[] resolveClasspath(IRuntimeClasspathEntry[] entries, ILaunchConfiguration configuration) throws CoreException {
  return getProvider().resolveClasspath(entries, configuration);
}
origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jdt.launching

/**
 * Computes and returns the unresolved source lookup path for the given launch
 * configuration.
 * 
 * @param configuration launch configuration
 * @return runtime classpath entries
 * @exception CoreException if unable to compute the source lookup path
 * @since 2.0
 */
public static IRuntimeClasspathEntry[] computeUnresolvedSourceLookupPath(ILaunchConfiguration configuration) throws CoreException {
  return getSourceLookupPathProvider(configuration).computeUnresolvedClasspath(configuration);
}

origin: org.eclipse.jdt/org.eclipse.jdt.launching

/**
 * Resolves the given source lookup path, returning the resolved source lookup path
 * in the context of the given launch configuration.
 *
 * @param entries unresolved entries
 * @param configuration launch configuration
 * @return resolved entries
 * @exception CoreException if unable to resolve the source lookup path
 * @since 2.0
 */
public static IRuntimeClasspathEntry[] resolveSourceLookupPath(IRuntimeClasspathEntry[] entries, ILaunchConfiguration configuration) throws CoreException {
  return getSourceLookupPathProvider(configuration).resolveClasspath(entries, configuration);
}
origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jdt.launching

/**
 * Computes and returns the unresolved class path for the given launch configuration.
 * Variable and container entries are unresolved.
 * 
 * @param configuration launch configuration
 * @return unresolved runtime classpath entries
 * @exception CoreException if unable to compute the classpath
 * @since 2.0
 */
public static IRuntimeClasspathEntry[] computeUnresolvedRuntimeClasspath(ILaunchConfiguration configuration) throws CoreException {
  return getClasspathProvider(configuration).computeUnresolvedClasspath(configuration);
}

origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jdt.launching

/**
 * Resolves the given source lookup path, returning the resolved source lookup path
 * in the context of the given launch configuration.
 * 
 * @param entries unresolved entries
 * @param configuration launch configuration
 * @return resolved entries
 * @exception CoreException if unable to resolve the source lookup path
 * @since 2.0
 */
public static IRuntimeClasspathEntry[] resolveSourceLookupPath(IRuntimeClasspathEntry[] entries, ILaunchConfiguration configuration) throws CoreException {
  return getSourceLookupPathProvider(configuration).resolveClasspath(entries, configuration);
}

origin: org.eclipse.jdt/org.eclipse.jdt.launching

/**
 * Computes and returns the unresolved class path for the given launch configuration.
 * Variable and container entries are unresolved.
 *
 * @param configuration launch configuration
 * @return unresolved runtime classpath entries
 * @exception CoreException if unable to compute the classpath
 * @since 2.0
 */
public static IRuntimeClasspathEntry[] computeUnresolvedRuntimeClasspath(ILaunchConfiguration configuration) throws CoreException {
  return getClasspathProvider(configuration).computeUnresolvedClasspath(configuration);
}
origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jdt.launching

/**
 * Resolves the given classpath, returning the resolved classpath
 * in the context of the given launch configuration.
 *
 * @param entries unresolved classpath
 * @param configuration launch configuration
 * @return resolved runtime classpath entries
 * @exception CoreException if unable to compute the classpath
 * @since 2.0
 */
public static IRuntimeClasspathEntry[] resolveRuntimeClasspath(IRuntimeClasspathEntry[] entries, ILaunchConfiguration configuration) throws CoreException {
  return getClasspathProvider(configuration).resolveClasspath(entries, configuration);
}

origin: org.eclipse.jdt/org.eclipse.jdt.launching

/**
 * @see IRuntimeClasspathProvider#computeUnresolvedClasspath(ILaunchConfiguration)
 */
@Override
public IRuntimeClasspathEntry[] computeUnresolvedClasspath(ILaunchConfiguration configuration) throws CoreException {
  return getProvider().computeUnresolvedClasspath(configuration);
}
origin: org.eclipse.jdt/org.eclipse.jdt.launching

  IRuntimeClasspathEntry[] entries1 = getClasspathProvider(configuration).resolveClasspath(entries, configuration);
  ArrayList<IRuntimeClasspathEntry> entries2 = new ArrayList<>(entries1.length);
  for (IRuntimeClasspathEntry entry : entries1) {
return getClasspathProvider(configuration).resolveClasspath(entries, configuration);
org.eclipse.jdt.launchingIRuntimeClasspathProvider

Javadoc

A classpath provider computes an unresolved classpath for a launch configuration, and resolves classpath entries for a launch configuration. A classpath provider is defined as an extension of type org.eclipse.jdt.launching.classpathProviders.

A provider is registered with an identifier that can be referenced by a launch configuration. A classpath provider is consulted to compute a classpath or source lookup path when a launch configuration references a provider in one or both of the following attributes:

  • ATTR_CLASSPATH_PROVIDER
  • ATTR_SOURCE_PATH_PROVIDER

A provider extension is defined in plugin.xml. Following is an example definition of a runtime classpath provider extension.
 
<extension point="org.eclipse.jdt.launching.classpathProviders"> 
<classpathProvider> 
id="com.example.ExampleClasspathProvider" 
class="com.example.ExampleClasspathProviderImpl" 
</classpathProvider> 
</extension> 
The attributes are specified as follows:
  • id specifies a unique identifier for this extension. This identifier may be used to reference a provider on one of the launch configuration attributes mentioned above.
  • class specifies the fully qualified name of the Java class that implements IRuntimeClasspathProvider.

Clients may implement this interface.

Most used methods

  • computeUnresolvedClasspath
    Computes and returns an unresolved classpath for the given launch configuration. Variable and contai
  • resolveClasspath
    Returns the resolved path corresponding to the given path, in the context of the given launch config

Popular in Java

  • Updating database using SQL prepared statement
  • getSystemService (Context)
  • setRequestProperty (URLConnection)
  • requestLocationUpdates (LocationManager)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • ImageIO (javax.imageio)
  • JPanel (javax.swing)
  • Sublime Text for Python
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now