Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.doc.user/plugin.xml')
-rw-r--r--jpa/plugins/org.eclipse.jpt.doc.user/plugin.xml62
1 files changed, 37 insertions, 25 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.doc.user/plugin.xml b/jpa/plugins/org.eclipse.jpt.doc.user/plugin.xml
index 38d0ac1a27..7efde27bf5 100644
--- a/jpa/plugins/org.eclipse.jpt.doc.user/plugin.xml
+++ b/jpa/plugins/org.eclipse.jpt.doc.user/plugin.xml
@@ -1,25 +1,37 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.0"?>
-<plugin>
- <!-- =========== -->
- <!-- Define TOC -->
- <!-- =========== -->
- <extension point="org.eclipse.help.toc">
- <toc file="toc.xml" primary="true"/>
- </extension>
- <!-- =========== -->
- <!-- Define F1 -->
- <!-- =========== -->
- <extension point="org.eclipse.help.contexts">
- <contexts file="contexts.xml" plugin="org.eclipse.jpt.jpa.ui"/>
- </extension>
- <!-- ==================== -->
- <!-- Define Keyword Index -->
- <!-- ==================== -->
- <extension point="org.eclipse.help.index">
- <index file="index.xml"/>
- </extension>
- <!-- =========== -->
- <!-- Cheatsheets -->
- <!-- =========== -->
-</plugin>
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+<plugin name="JPA Documentation Plug-in" id="org.eclipse.jpt.doc.user" version="3.0.2" provider-name="Oracle">
+ <!-- =========== -->
+ <!-- Define TOC -->
+ <!-- =========== -->
+ <extension point="org.eclipse.help.toc">
+ <toc file="toc.xml" primary="true"/>
+ </extension>
+ <!-- =========== -->
+ <!-- Define F1 -->
+ <!-- =========== -->
+ <extension point="org.eclipse.help.contexts">
+ <contexts file="contexts.xml" plugin="org.eclipse.jpt.jpa.ui"/>
+ </extension>
+ <!-- ==================== -->
+ <!-- Define Keyword Index -->
+ <!-- ==================== -->
+ <extension point="org.eclipse.help.index">
+ <index file="index.xml"/>
+ </extension>
+ <!-- =========== -->
+ <!-- Cheatsheets -->
+ <!-- =========== -->
+ <extension point="org.eclipse.ui.cheatsheets.cheatSheetContent">
+ <category name="JPA Development" id="com.jpa.category"/>
+ <cheatsheet name="Create a JPA Project" category="com.jpa.category" contentFile="$nl$/cheatsheets/add_persistence.xml" id="org.eclipse.jpa.cheatsheet.createproject1">
+ <description>Learn how to create a JPA project.</description>
+ </cheatsheet>
+ <cheatsheet name="Create a Persistent Entity" category="com.jpa.category" contentFile="$nl$/cheatsheets/create_entity.xml" id="org.eclipse.jpa.cheatsheet.addentity">
+ <description>Learn how to add a persistent entity to a Java project.</description>
+ </cheatsheet>
+ <cheatsheet name="Map a Persistent Entity" category="com.jpa.category" contentFile="$nl$/cheatsheets/map_entity.xml" id="org.eclipse.jpa.cheatsheet.mapentity">
+ <description>Learn how to map a persistent entity to a database.</description>
+ </cheatsheet>
+ </extension>
+</plugin>

Back to the top