|
| |
"Manifest Destiny"
Vol. 7, Issue 5, p. 102
Listing 1
void logPackage()
{
Package package =
Package.getPackage("com.example.myapp");
if (package == null) {
System.out.println("com.example.myapp not loaded");
return;
}
System.out.println("com.example.myapp version " +
package.getSpecificationVersion() +
" build #" +
package.getImplementationVersion());
}
|
|
All Rights Reserved
Copyright © 2004 SYS-CON Media, Inc.
E-mail: info@sys-con.com
Java and Java-based marks are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. SYS-CON Publications, Inc. is independent of Sun Microsystems, Inc.
|