/* * [TestImportStatic.java] * * Summary: demonstrate the use of import static. * * Copyright: (c) 2009-2017 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.8+ * * Created with: JetBrains IntelliJ IDEA IDE http://www.jetbrains.com/idea/ * * Version History: * 1.0 2006-03-02 */ package com.mindprod.example; import static java.lang.System.*; /** * demonstrate the use of import static. *

* * @author Roedy Green, Canadian Mind Products * @version 1.0 2006-03-02 * @noinspection WeakerAccess * @since 2006-03-02 */ public final class TestImportStatic { /** * Debugging harness. * * @param args command line arguments are ignored. */ public static void main( String args[] ) { // same effect as out.println out.println( "Done!" ); } // end main }