KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > example > Hello


1 /*
2  * This file is subject to the license found in LICENCE.TXT in the root directory of the project.
3  *
4  * #SNAPSHOT#
5  */

6 package example;
7
8 import org.apache.commons.lang.WordUtils;
9
10 /**
11  * Simple example world to show how easy it is to retreive libs with ivy !!!
12  */

13 public class Hello {
14     public static void main(String JavaDoc[] args) {
15         String JavaDoc message = "hello ivy !";
16         System.out.println("standard message : " + message);
17         System.out.println("capitalized by " + WordUtils.class.getName() + " : " + WordUtils.capitalizeFully(message));
18     }
19 }
20
Popular Tags