/* * [Zzz.java] * * Summary: Zzz punches out Java boilerplate code for the various mindprod.com projects including ant scripts. * * Copyright: (c) 2003-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.1 2006-03-06 * 1.2 2007-08-03 import to Intellij. Run through Inspector. * 1.3 2009-05-02 major refactoring. All non project code removed. */ package com.mindprod.zzz; import com.mindprod.common18.EIO; import java.io.File; /** * Zzz punches out Java boilerplate code for the various mindprod.com projects including ant scripts. *

* Must run with CWD E:\ * * @author Roedy Green, Canadian Mind Products * @version 1.3 2009-05-02 major refactoring. All non project code removed. * @since 2003-06-10 */ public class Zzz { private static final int FIRST_COPYRIGHT_YEAR = 2003; /** * undisplayed copyright notice */ @SuppressWarnings( { "UnusedDeclaration" } ) private static final String EMBEDDED_COPYRIGHT = "Copyright: (c) 2003-2017 Roedy Green, Canadian Mind Products, http://mindprod.com"; @SuppressWarnings( { "UnusedDeclaration" } ) private static final String RELEASE_DATE = "2007-07-03"; /** * embedded version string. */ @SuppressWarnings( { "UnusedDeclaration" } ) private static final String VERSION_STRING = "1.3"; /** * dummy constructor */ public Zzz() { } /** * Generate scripts files and checks for all projects. Busut run with E:\ * * @param args not used */ public static void main( String[] args ) { final String cwd = EIO.getCanOrAbsPath( new File( "." ) ); assert cwd.equals( "E:\\" ) : "must run Zzz with directory E:\\"; DefineAllProjects.stompAllProjects(); } }