summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_e.java
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-05-19 00:22:04 +0000
committerKarl Berry <karl@freefriends.org>2010-05-19 00:22:04 +0000
commiteb07d6a8223898ec3dc5a8eecf34a474d5d848a9 (patch)
treebb8e2b82e23e8c30a9dc686cfa7ae58b26221cec /Master/texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_e.java
parentbe5a4c024b0705f0eb9ca28fd902cbcf6a9c31ae (diff)
listings-ext v58 (18may10)
git-svn-id: svn://tug.org/texlive/trunk@18344 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_e.java')
-rw-r--r--Master/texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_e.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_e.java b/Master/texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_e.java
new file mode 100644
index 00000000000..89ae40ab579
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_e.java
@@ -0,0 +1,23 @@
+// ce: combine
+/**
+ * HelloWorld.java
+// be: the class
+public class HelloWorld
+{
+// ee: the class
+ // be: specific constructor
+ public HelloWorld()
+ {
+ System.out.println("Object HelloWorld created");
+ } // end of specific constructor "HelloWorld()"
+ // ee: specific constructor
+
+ // be: main method
+ public static final void main(final String[] args)
+ {
+ HelloWorld h = new HelloWorld();
+ } // end of method "main(String[] args)"
+ // ee: main method
+// be: the class
+} // end of class "HelloWorld"
+// ee: the class