/* * [Phone.java] * * Summary: Dummy class to represent phone class that prepares phone lists. * * Copyright: (c) 2008-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 2008-02-04 set up with ANT. * 1.1 2011-02-08 convert from flat file to CSV input. */ package com.mindprod.phone; import static java.lang.System.*; /** * Dummy class to represent phone class that prepares phone lists. * * @author Roedy Green, Canadian Mind Products * @version 1.1 2011-02-08 convert from flat file to CSV input. * @since 2008-02-04 */ public class Phone { private static final int FIRST_COPYRIGHT_YEAR = 2008; /** * undisplayed copyright notice * * @noinspection UnusedDeclaration */ private static final String EMBEDDED_COPYRIGHT = "Copyright: (c) 2008-2017 Roedy Green, Canadian Mind Products, http://mindprod.com"; /** * @noinspection UnusedDeclaration */ private static final String RELEASE_DATE = "2011-02-08"; /** * Title */ @SuppressWarnings( { "UnusedDeclaration" } ) private static final String TITLE_STRING = "Phone"; /** * Version, is no About box. */ @SuppressWarnings( { "UnusedDeclaration" } ) private static final String VERSION_STRING = "1.1"; /** * test harness * * @param args not used */ @SuppressWarnings( { "EmptyMethod" } ) public static void main( String[] args ) { out.println( "Phone is just a dummy. Use PhoneCsvToHTML." ); } }