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

