/*****************************************************************/ /* Copyright 2009 avajava.com */ /* This code may be freely used and distributed in any project. */ /* However, please do not remove this credit if you publish this */ /* code in paper or electronic form, such as on a web site. */ /*****************************************************************/ package com.maventest; import org.apache.commons.lang.StringUtils; public class MyTest { public static void main(String[] args) { sayHello(); sayHelloAgain(); } public static void sayHello() { System.out.println("MyTest says hello!"); } public static void sayHelloAgain() { System.out.println(StringUtils.swapCase("MyTest says hello again!")); } }