/**
 * <p>
 * C class
 * Extended by B
 * </p>
 * 
 * @author Jang, Sun-Jin (jangsunjin@softwareinlife.com)
 * @version 1.0
 * @since 1.5.06
 * @date 2008. 12. 23.
 *
 */
public class C extends B {

	/**
	 * Constructor
	 */
	public C() {
		System.out.println("Created C object!");
	}
	
	/**
	 * Foo Method
	 * 
	 * @return will be return 6
	 */
	int foo(){
		System.out.println("Called foo() method in C object!");
		return 6;
	}
}

