Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 9c1dfd5d1f840f61746d70d7f04fd40026fcde7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.wst.xsd.ui.internal.adt.editor;

import org.eclipse.jface.action.IMenuManager;

public class ContextMenuParticipant
{  
  public boolean isApplicable(Object object, String actionId)
  {
    return true;
  }
  
  public void contributeActions(Object object, IMenuManager menu)
  {    
  }
}

Back to the top