KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test10 > CCTest10b


1 package test10;
2
3 import test9.CCTest9a;
4
5 public class CCTest10b {
6     
7     public static void main(String JavaDoc[] args) {
8         CCTest9a e; //Check that CCTest9a is in the CC
9

10     e = CCTest9a.A; //Check the CC provided after the dot
11

12     CCTest9a x = e.A; //Check the CC provided after the dot
13
}
14     
15 }
Popular Tags