Subversion Repositories general

Rev

Rev 240 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
240 swalkenh 1
PK
260 swalkenh 2
 
3
 
240 swalkenh 4
Comment: view everything as text, best as default plugin
5
Transform-To-File: src/plugins/textEditorPlugin/TextEditorPluginTransf
6
 orm.xsl
7
Created-By: 1.4.0 (Sun Microsystems Inc.)
8
Description: ...(todo)
9
XMLEditor-Plugin-Name: TextEditor
10
Class-Path: 
11
Transform-Fro-File: src/plugins/textEditorPlugin/TextEditorPluginTrans
12
 formBack.xsl
13
Main-Class: src.plugins.textEditorPlugin.TextEditorPlugin
14
 
15
Name: src/plugins/textEditorPlugin
16
Specification-Version: 0.4 (05/07/03)
17
Specification-Title: plugin for XMLEditor
18
Implementation-Version: 0.1 (05/07/03)
19
Implementation-Title: src.plugins.textEditorPlugin
20
Implementation-Vendor: group5, software practice SS_2003, University B
21
 ielefeld, Germany
22
Specification-Vendor: group5, software practice SS_2003, University Bi
23
 elefeld, Germany
24
 
25
PK
260 swalkenh 26
 
240 swalkenh 27
 
28
 
29
SourceFileTextEditorPlugin.java!/*·	±
30
 
31
 
32
 
33
 
260 swalkenh 34
 
35
* ss_2003
36
* group project: XML-Editor
37
* $Id: TextEditorPlugin.java,v 1.1 2003/07/07 09:44:34 swalkenh Exp $
38
*/
39
40
 
41
42
 
43
 
44
 * dummy plugin used for testing
45
 */
46
public class TextEditorPlugin {
47
	
48
 
49
		System.out.println("This is the main method of a dummy TextEditor plugin");
50
	}
51
52
 
240 swalkenh 53
‘]ç.w	HPP:src/plugins/textEditorPlugin/TextEditorPluginTransform.xsl<!-- status: testing for TextEditor plugin -->
260 swalkenh 54
 
55
<xsl:output method="xml" indent="yes" />
56
57
 
58
<xsl:template match="/"><!-- element-plugin association -->
59
	<xsl:copy-of select="node()" />
60
</xsl:template>
61
62
 
240 swalkenh 63
‘]ç.w	HPP>src/plugins/textEditorPlugin/TextEditorPluginTransformBack.xsl<!-- status: testing for TextEditor plugin -->
260 swalkenh 64
 
65
<xsl:output method="xml" indent="yes" />
66
67
 
68
<xsl:template match="/"><!-- element-plugin association -->
69
	<xsl:copy-of select="node()" />
70
</xsl:template>
71
72
 
240 swalkenh 73
74
 
260 swalkenh 75
 
240 swalkenh 76
 
260 swalkenh 77
 
240 swalkenh 78
 
260 swalkenh 79
 
240 swalkenh 80
 
260 swalkenh 81
 
240 swalkenh 82
 
260 swalkenh 83
 
240 swalkenh 84