blob: 9c1dfd5d1f840f61746d70d7f04fd40026fcde7c [file] [log] [blame]
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)
{
}
}