I'm trying to add a new "Generate..." option under the Source menu when you right-click on a Java file. At this point, I'm just trying to get the menu option to show up but I haven't had success yet.
Is there something wrong with my plugin.xml file below as far as you can see?
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension point="org.eclipse.ui.popupMenus">
<objectContribution
id="GenerateBuilderPlugin.contribution1"
objectClass="org.eclipse.core.resources.IFile">
<action
class="generatebuilderplugin.popup.actions.GenerateBuilder"
enablesFor="1"
id="GenerateBuilderPlugin.newAction"
label="Generate Builder..."
menubarPath="org.eclipse.jdt.ui.source.menu/generateGroup">
</action>
</objectContribution>
</extension>
</plugin>