/* * [Aws.java] * * Summary: Placeholder to represent the Aws package. * * Copyright: (c) 2012-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 2012-03-14 initial version */ package com.mindprod.aws; import static java.lang.System.*; /** * Placeholder to represent the Aws package. * * @author Roedy Green, Canadian Mind Products * @version 1.0 2012-03-14 initial version. * @since 2012-03-14 */ public final class Aws { static final String RELEASE_DATE = "2012-03-14"; static final String VERSION_STRING = "1.0"; private static final int FIRST_COPYRIGHT_YEAR = 2012; /** * undisplayed copyright notice */ @SuppressWarnings( { "UnusedDeclaration" } ) private static final String EMBEDDED_COPYRIGHT = "Copyright: (c) 2012-2017 Roedy Green, Canadian Mind Products, " + "http://mindprod.com"; /** * Allow this Applet to run as as application as well. * * @param args command line arguments ignored. */ public static void main( String args[] ) { out.println( "Aws should not be run standalone" ); } }