001        package com.croftsoft.core;
002    
003        /**********************************************************************
004        * An interface of CroftSoft-specific constants.
005        *
006        * @version
007        *   $Date: 2008/01/04 23:42:27 $
008        * @since
009        *   2002-05-04
010        * @author
011        *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
012        **********************************************************************/
013    
014        public interface  CroftSoftConstants
015        ///////////////////////////////////////////////////////////////////////
016        ///////////////////////////////////////////////////////////////////////
017        {
018    
019        public static final String
020          COPYRIGHT
021            = "Copyright 2008 CroftSoft Inc",
022          HOME_PAGE
023            = "https://www.croftsoft.com/",
024          DEFAULT_LICENSE
025            = "Licensed under the "
026            + "GNU Lesser General Public License version 3.0",
027          DEFAULT_ATTRIBUTION_NOTICE
028            = "Portions " + COPYRIGHT + "\n"
029            + DEFAULT_LICENSE + "\n"
030            + HOME_PAGE + "\n",
031          DEFAULT_APPLET_INFO
032            = DEFAULT_ATTRIBUTION_NOTICE,
033          FRAME_ICON_FILENAME
034            = "media/croftsoft.png";
035           
036        ///////////////////////////////////////////////////////////////////////
037        ///////////////////////////////////////////////////////////////////////
038        }