Runtime Model Presentations

Identifier:
org.eclipse.ptp.ui.runtimeModelPresentations

Since:
3.0

Description:
This extension point allows plug-ins to contribute a resource manager presentation that is used to determine how the model will be displayed in the user interface.

Configuration Markup:

<!ELEMENT extension (runtimeModelPresentation)+>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED

>


<!ELEMENT runtimeModelPresentation EMPTY>

<!ATTLIST runtimeModelPresentation

class CDATA #REQUIRED

id    CDATA #REQUIRED

>


Examples:

  <extension point="org.eclipse.ptp.ui.runtimeModelPresentations">
    <runtimeModelPresentation
      class="org.eclipse.ptp.rm.mpi.openmpi.ui.OpenMPIRuntimeModelPresentation"
      id="org.eclipse.ptp.rm.mpi.openmpi.resourcemanager">
     </runtimeModelPresentation>
  </extension>

API Information:
The value of the class attribute must represent a class that implements org.eclipse.ptp.ui.IRuntimeModelPresentation.

Supplied Implementation:
[Enter information about supplied implementation of this extension point.]