Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "MemoryAnalyzer/MAT Capabilities"

m
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
This document provides some sample capability definitions for the Memory Analyzer (MAT). It desctibes:
+
This document provides some sample [[Eclipse/Capabilities|capability]] definitions for the Memory Analyzer (MAT). It describes:
 
#Where to find the existing Capabilities plug-in in SVN
 
#Where to find the existing Capabilities plug-in in SVN
 
#Or how to implement your own Capabilities for Memory Analyzer
 
#Or how to implement your own Capabilities for Memory Analyzer
Line 7: Line 7:
 
The plug-in org.eclipse.mat.ui.capabilities contains Capabilities definition for Memory Analyzer  
 
The plug-in org.eclipse.mat.ui.capabilities contains Capabilities definition for Memory Analyzer  
  
The pluggin can be found in MAT's SVN source repository:  
+
The plug-in can be found in MAT's SVN source repository:  
  
 
     * Host: dev.eclipse.org
 
     * Host: dev.eclipse.org
Line 32: Line 32:
 
   </extension>
 
   </extension>
 
   </nowiki>
 
   </nowiki>
 +
 +
[[Category:Memory Analyzer]]

Latest revision as of 10:22, 10 June 2013

This document provides some sample capability definitions for the Memory Analyzer (MAT). It describes:

  1. Where to find the existing Capabilities plug-in in SVN
  2. Or how to implement your own Capabilities for Memory Analyzer

Existing Capabilities Plug-in

The plug-in org.eclipse.mat.ui.capabilities contains Capabilities definition for Memory Analyzer

The plug-in can be found in MAT's SVN source repository:

   * Host: dev.eclipse.org
   * Repository Path: /svnroot/tools/org.eclipse.mat
   * User: anonymous
   * Password: <empty>
   * Connection URL (http): http://dev.eclipse.org/svnroot/tools/org.eclipse.mat
   * Path (in trunk) /plugins/org.eclipse.mat.ui.capabilities

Capabilities Implementation

The code snippet below shows how to turn off Memory Analyzer functionality in the workbench via Capabilities:

  
   <extension point="org.eclipse.ui.activities">
	<activity 
		id="org.eclipse.mat" 
		name="%activity.name" 
		description="%activity.description" />                                    
      
	<activityPatternBinding 
		activityId="org.eclipse.mat" 
		pattern="org\.eclipse\.mat\..*"/> 
   </extension>
   

Back to the top