Skip to main content
summaryrefslogtreecommitdiffstats
blob: f4570100dce0d33c6a70bae3545d7c89f3c7f856 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>

	<!-- ***** TOC ***** -->
	<extension
		point="org.eclipse.help.toc">
		<toc file="toc.xml" primary="true"/>
	</extension>

	<!-- ***** F1 ***** -->
	<extension
		point="org.eclipse.help.contexts">
		<contexts file="contexts.xml" plugin="org.eclipse.jpt.jpa.ui"/>
	</extension>

	<!-- ***** Keyword Index ***** -->
	<extension
		point="org.eclipse.help.index">
		<index file="index.xml"/>
	</extension>

	<!-- ***** Cheatsheets ***** -->
	<extension
		point="org.eclipse.ui.cheatsheets.cheatSheetContent">

		<category name="%jpaDevelopment"
			id="org.eclipse.jpt.jpa.category"/>

		<cheatsheet name="%createAJpaProject"
			id="org.eclipse.jpt.jpa.cheatsheet.CreateJpaProject"
			contentFile="$nl$/cheatsheets/add_persistence.xml"
			category="org.eclipse.jpt.jpa.category">
			<description>%createAJpaProjectDescription</description>
		</cheatsheet>

		<cheatsheet name="%createAPersistentEntity"
			id="org.eclipse.jpt.jpa.cheatsheet.AddEntity"
			contentFile="$nl$/cheatsheets/create_entity.xml"
			category="org.eclipse.jpt.jpa.category">
			<description>%createAPersistentEntityDescription</description>
		</cheatsheet>

		<cheatsheet name="%MapAPersistentEntity"
			id="org.eclipse.jpt.jpa.cheatsheet.MapEntity"
			contentFile="$nl$/cheatsheets/map_entity.xml"
			category="org.eclipse.jpt.jpa.category">
			<description>%MapAPersistentEntityDescription</description>
		</cheatsheet>

	</extension>

</plugin>

Back to the top