Add 2012 to FSF copyright years for Emacs files
[bpt/emacs.git] / etc / srecode / doc-java.srt
CommitLineData
c05676c5
CY
1;; doc-java.srt --- SRecode templates for "document" applications
2
acaf905b 3;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
c05676c5
CY
4
5;; Author: Eric M. Ludlam <eric@siege-engine.com>
6
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software: you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
11;; the Free Software Foundation, either version 3 of the License, or
12;; (at your option) any later version.
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
20;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21
22set mode "java-mode"
23
24set application "document"
25
26context declaration
27
28;;; Notes on the DOCUMENT templates.
29;;
30;; These templates recycle existing templates for javadoc in the
31;; more general C++ template set.
32
33template section-comment :indent :blank
34"A comment separating major sections of a file."
35----
36{{>:declaration:javadoc-section-comment}}
37----
38
39template function-comment :tag :indent :blank
c2dd1910 40"A comment occurring in front of a function.
c05676c5
CY
41Recycle javadoc comment code from the more general template set."
42----
43{{>:declaration:javadoc-function}}
44----
45
46template variable-same-line-comment :tag
fa463103 47"A comment occurring after a variable declaration.
c05676c5
CY
48Recycle javadoc comment code from the more general template set."
49----
50{{>:declaration:javadoc-variable-same-line}}
51----
52
53;; These happen to be the same as in a classdecl.
54template group-comment-start :blank :indent
c2dd1910 55"A comment occurring in front of a group of declarations.
c05676c5
CY
56Recycle javadoc comment code from the more general template set."
57----
58{{>:classdecl:javadoc-function-group-start}}
59----
60
61template group-comment-end :blank :indent
045b9da7 62"A comment occurring at the end of a group of declarations.
c05676c5
CY
63Recycle javadoc comment code from the more general template set."
64----
65{{>:classdecl:javadoc-function-group-end}}
66----
67
68;; Some templates only show up in classdecls.
69context classdecl
70
71template group-comment-start :blank :indent
c2dd1910 72"A comment occurring in front of a group of declarations.
c05676c5
CY
73Recycle javadoc comment code from the more general template set."
74----
75{{>:classdecl:javadoc-function-group-start}}
76----
77
78template group-comment-end :blank :indent
045b9da7 79"A comment occurring at the end of a group of declarations.
c05676c5
CY
80Recycle javadoc comment code from the more general template set."
81----
82{{>:classdecl:javadoc-function-group-end}}
83----
84
85;; end