Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 213397 Details for
Bug 375741
intermittent problems with context menu visibility etc.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
plugin.xml entries
context menu problems.txt (text/plain), 6.37 KB, created by
Brian Vosburgh
on 2012-03-30 11:55:36 EDT
(
hide
)
Description:
plugin.xml entries
Filename:
MIME Type:
Creator:
Brian Vosburgh
Created:
2012-03-30 11:55:36 EDT
Size:
6.37 KB
patch
obsolete
> >>>>>>>>> context menus > > <menuContribution > locationURI="popup:org.eclipse.jpt.ui.jpaStructureView"> > > <command > commandId="org.eclipse.jpt.jpa.ui.entityMappingsAddPersistentClass"> > <visibleWhen> > <with variable="selection"> > <iterate ifEmpty="false" operator="and"> > <instanceof value="org.eclipse.jpt.jpa.core.context.orm.EntityMappings"/> > </iterate> > </with> > </visibleWhen> > </command> > > <command > commandId="org.eclipse.ui.edit.delete" > label="%removePersistentClass"> > <visibleWhen> > <with variable="selection"> > <iterate ifEmpty="false" operator="and"> > <instanceof value="org.eclipse.jpt.jpa.core.context.orm.OrmPersistentType"/> > </iterate> > </with> > </visibleWhen> > </command> > > <command > commandId="org.eclipse.jpt.jpa.ui.persistentAttributeAddToXml"> > <visibleWhen> > <with variable="selection"> > <iterate ifEmpty="false" operator="and"> > <instanceof value="org.eclipse.jpt.jpa.core.context.orm.OrmReadOnlyPersistentAttribute"/> > <test property="org.eclipse.jpt.jpa.core.isVirtual"/> > </iterate> > </with> > </visibleWhen> > </command> > > <command > commandId="org.eclipse.jpt.jpa.ui.persistentAttributeAddToXmlAndMap"> > <visibleWhen> > <with variable="selection"> > <iterate ifEmpty="false" operator="and"> > <instanceof value="org.eclipse.jpt.jpa.core.context.orm.OrmReadOnlyPersistentAttribute"/> > <test property="org.eclipse.jpt.jpa.core.isVirtual"/> > </iterate> > </with> > </visibleWhen> > </command> > > <command > commandId="org.eclipse.ui.edit.delete" > label="%removePersistentAttributeFromXml"> > <visibleWhen> > <with variable="selection"> > <iterate ifEmpty="false" operator="and"> > <instanceof value="org.eclipse.jpt.jpa.core.context.orm.OrmReadOnlyPersistentAttribute"/> > <test property="org.eclipse.jpt.jpa.core.isNotVirtual"/> > </iterate> > </with> > </visibleWhen> > </command> > > <menu > id="org.eclipse.jpt.jpa.ui.persistentTypeMapAs" > label="%mapAs" > mnemonic="%mapAsMnemonic" > icon="$nl$/icons/full/eview16/jpa_perspective.gif"> > <visibleWhen> > <with variable="selection"> > <iterate ifEmpty="false" operator="and"> > <instanceof value="org.eclipse.jpt.jpa.core.context.PersistentType"/> > </iterate> > </with> > </visibleWhen> > <dynamic > id="org.eclipse.jpt.jpa.ui.persistentTypeMapAs" > class="org.eclipse.jpt.jpa.ui.internal.menus.PersistentTypeMapAsContribution"> > </dynamic> > </menu> > > <menu > id="org.eclipse.jpt.jpa.ui.persistentAttributeMapAs" > label="%mapAs" > mnemonic="%mapAsMnemonic" > icon="$nl$/icons/full/eview16/jpa_perspective.gif"> > <visibleWhen> > <with variable="selection"> > <iterate ifEmpty="false" operator="and"> > <instanceof value="org.eclipse.jpt.jpa.core.context.ReadOnlyPersistentAttribute"/> > <test property="org.eclipse.jpt.jpa.core.isNotVirtual"/> > </iterate> > </with> > </visibleWhen> > <dynamic > id="org.eclipse.jpt.jpa.ui.persistentAttributeMapAs" > class="org.eclipse.jpt.jpa.ui.internal.menus.PersistentAttributeMapAsContribution"> > </dynamic> > </menu> > > </menuContribution> > > >>>>>>>>> handlers > > > <handler > commandId="org.eclipse.ui.edit.delete" > class="org.eclipse.jpt.jpa.ui.internal.commands.RemovePersistentClassHandler"> > <activeWhen> > <and> > <reference definitionId="org.eclipse.jpt.jpa.ui.expression.jpaStructureViewIsActive"/> > <iterate operator="and"> > <instanceof value="org.eclipse.jpt.jpa.core.context.orm.OrmPersistentType"/> > </iterate> > </and> > </activeWhen> > </handler> > > <handler > commandId="org.eclipse.jpt.jpa.ui.persistentAttributeAddToXml" > class="org.eclipse.jpt.jpa.ui.internal.commands.AddPersistentAttributeToXmlHandler"> > <activeWhen> > <reference definitionId="org.eclipse.jpt.jpa.ui.expression.jpaStructureViewIsActive"/> > </activeWhen> > <enabledWhen> > <iterate operator="and"> > <instanceof value="org.eclipse.jpt.jpa.core.context.orm.OrmReadOnlyPersistentAttribute"/> > <test property="org.eclipse.jpt.jpa.core.isVirtual"/> > <test property="org.eclipse.jpt.jpa.core.isMapped"/> > </iterate> > </enabledWhen> > </handler> > > <handler > commandId="org.eclipse.jpt.jpa.ui.persistentAttributeAddToXmlAndMap" > class="org.eclipse.jpt.jpa.ui.internal.commands.AddPersistentAttributeToXmlAndMapHandler"> > <activeWhen> > <reference definitionId="org.eclipse.jpt.jpa.ui.expression.jpaStructureViewIsActive"/> > </activeWhen> > <enabledWhen> > <iterate operator="and"> > <instanceof value="org.eclipse.jpt.jpa.core.context.orm.OrmReadOnlyPersistentAttribute"/> > <test property="org.eclipse.jpt.jpa.core.isVirtual"/> > </iterate> > </enabledWhen> > </handler> > > <handler > commandId="org.eclipse.ui.edit.delete" > class="org.eclipse.jpt.jpa.ui.internal.commands.RemovePersistentAttributeFromXmlHandler"> > <activeWhen> > <and> > <reference definitionId="org.eclipse.jpt.jpa.ui.expression.jpaStructureViewIsActive"/> > <iterate operator="and"> > <instanceof value="org.eclipse.jpt.jpa.core.context.orm.OrmReadOnlyPersistentAttribute"/> > <test property="org.eclipse.jpt.jpa.core.isNotVirtual"/> > </iterate> > </and> > </activeWhen> > </handler> > > <handler > commandId="org.eclipse.jpt.jpa.ui.persistentTypeMapAs" > class="org.eclipse.jpt.jpa.ui.internal.commands.PersistentTypeMapAsHandler"> > <activeWhen> > <reference definitionId="org.eclipse.jpt.jpa.ui.expression.jpaStructureViewIsActive"/> > </activeWhen> > <enabledWhen> > <iterate operator="and"> > <instanceof value="org.eclipse.jpt.jpa.core.context.PersistentType"/> > </iterate> > </enabledWhen> > </handler> > > <handler > commandId="org.eclipse.jpt.jpa.ui.persistentAttributeMapAs" > class="org.eclipse.jpt.jpa.ui.internal.commands.PersistentAttributeMapAsHandler"> > <activeWhen> > <reference definitionId="org.eclipse.jpt.jpa.ui.expression.jpaStructureViewIsActive"/> > </activeWhen> > <enabledWhen> > <iterate operator="and"> > <instanceof value="org.eclipse.jpt.jpa.core.context.ReadOnlyPersistentAttribute"/> > <test property="org.eclipse.jpt.jpa.core.isNotVirtual"/> > </iterate> > </enabledWhen> > </handler>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 375741
: 213397 |
215117
|
215367
|
215486