summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/hjp5/examples/Listing1105.java
blob: 4ca175096320f700e60824651c2e49b0a9141fcd (plain)
1
2
3
4
5
6
7
8
9
10
/* Listing1105.java */

public class Listing1105
{
  public void out(CharSequence text)
  {    
    // Ausgabe einer beliebigen 
    System.out.println("Ausgabe: " + text);    
  }
}