1: //: com:bruceeckel:simple:Vector.java 2: // From 'Thinking in Java, 2nd ed.' by Bruce Eckel 3: // www.BruceEckel.com. See copyright notice in CopyRight.txt. 4: // Creating a package. 5: package com.bruceeckel.simple; 7: public class Vector { 8: public Vector() { 9: System.out.println( 10: "com.bruceeckel.util.Vector"); 11: } 12: } ///:~