/*****************************************************************/ /* 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.maventest2; public class MyTest2 { public static void main(String[] args) { sayHello(); } public static void sayHello() { System.out.println("MyTest2 says hello!"); } }