/* * @(#)TestImportStatic.java * * Summary: demonstrate the use of import static. * * Copyright: (c) 2009 Roedy Green, Canadian Mind Products, http://mindprod.com * * Licence: This software may be copied and used freely for any purpose but military. * http://mindprod.com/contact/nonmil.html * * Requires: JDK 1.6+ * * Created with: IntelliJ IDEA IDE. * * Version History: * 1.0 2006-03-02 */ package com.mindprod.example; import static java.lang.System.out; /** * demonstrate the use of import static. * <p/> * @noinspection WeakerAccess * * @author Roedy Green, Canadian Mind Products * @version 1.0 2006-03-02 * @since 2006-03-02 */ public final class TestImportStatic { // --------------------------- main() method --------------------------- /** * Debugging harness. * * @param args command line arguments are ignored. */ public static void main( String args[] ) { // same effect as System.out.println out.println( "Done!" ); }// end main }