18 lines
348 B
Java
18 lines
348 B
Java
/**
|
||
* Copyright (C) 2009-2016 Lightbend Inc. <http://www.lightbend.com>
|
||
*/
|
||
|
||
package docs.pattern;
|
||
|
||
// this part will not appear in the docs
|
||
|
||
//#all-of-it
|
||
class JavaTemplate {
|
||
public JavaTemplate() {
|
||
System.out.println("Hello, Template!");
|
||
}
|
||
//#uninteresting-stuff
|
||
// don’t show this plumbimg
|
||
//#uninteresting-stuff
|
||
}
|
||
//#all-of-it
|