1 18 19 package org.objectweb.jac.samples.document; 20 21 public class Run { 22 23 public static void main(String [] args) { 24 25 ds = new DocumentServer(); 26 27 Document doc = 28 new Document( 29 new String [] { 30 "This document is just a sample", 31 "to demonstrate the capability of", 32 "the tracing aspect to count its", 33 "lines in a simple way and an", 34 "optimized way"} ); 35 36 ds.addDocument(doc); 37 } 38 static DocumentServer ds; 39 } 40 | Popular Tags |