/* * [Example.java] * * Summary: Example collection of sample code. * * 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 2000-01-01 */ package com.mindprod.example; import static java.lang.System.*; /** * Example collection of sample code. * * @author Roedy Green, Canadian Mind Products * @version 1.0 2000-01-01 * @since 2000-01-01 */ @SuppressWarnings( { "EmptyMethod" } ) public class Example { /** * test harness * * @param args not used */ public static void main( String[] args ) { out.println( "Example is just a dummy class." ); } }