Source Path Computers

org.eclipse.debug.core.sourcePathComputers

3.0

Defines an extension point to register a computer that can describe a default source lookup path for a launch configuration. Source path computers are associated with launch configuration types via the launchConfigurationTypes extension point. As well, a source path computer can be associated with a specific launch configuration via the launch configuration attribute ATTR_SOURCE_PATH_COMPUTER_ID.

<!ELEMENT extension (sourcePathComputer*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT sourcePathComputer EMPTY>

<!ATTLIST sourcePathComputer

id    CDATA #REQUIRED

class CDATA #REQUIRED>

Defines an extension point to register a computer that can describe a default source lookup path for a launch configuration.



Following is an example source path computer definition:
   

<extension point=

"org.eclipse.debug.core.sourcePathComputers"

>

<sourcePathComputer id=

"org.eclipse.example.exampleSourcePathComputer"

class=

"org.eclipse.example.SourcePathComputer"

>

</sourcePathComputer>

</extension>

Value of the attribute class must be a fully qualified name of a Java class that implements the interface ISourcePathComputer.