18 lines
437 B
Java
18 lines
437 B
Java
// hiding/LibTest.java
|
|
// (c)2021 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://OnJava8.com for more book information.
|
|
// Uses the library
|
|
import com.mindviewinc.simple.*;
|
|
|
|
public class LibTest {
|
|
public static void main(String[] args) {
|
|
Vector v = new Vector();
|
|
List l = new List();
|
|
}
|
|
}
|
|
/* Output:
|
|
com.mindviewinc.simple.Vector
|
|
com.mindviewinc.simple.List
|
|
*/
|