Coverage Report - org.webmacro.WMConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
WMConstants
0%
0/1
N/A
0
 
 1  
 /*
 2  
  * Copyright (C) 1998-2000 Semiotek Inc.  All Rights Reserved.
 3  
  *
 4  
  * Redistribution and use in source and binary forms, with or without
 5  
  * modification, are permitted under the terms of either of the following
 6  
  * Open Source licenses:
 7  
  *
 8  
  * The GNU General Public License, version 2, or any later version, as
 9  
  * published by the Free Software Foundation
 10  
  * (http://www.fsf.org/copyleft/gpl.html);
 11  
  *
 12  
  *  or
 13  
  *
 14  
  * The Semiotek Public License (http://webmacro.org/LICENSE.)
 15  
  *
 16  
  * This software is provided "as is", with NO WARRANTY, not even the
 17  
  * implied warranties of fitness to purpose, or merchantability. You
 18  
  * assume all risks and liabilities associated with its use.
 19  
  *
 20  
  * See www.webmacro.org for more information on the WebMacro project.
 21  
  */
 22  
 
 23  
 
 24  
 package org.webmacro;
 25  
 
 26  
 
 27  
 /**
 28  
  * Constants used in WebMacro.
 29  
  */
 30  0
 public final class WMConstants
 31  
 {
 32  
 
 33  
     public final static String TEMPLATE_OUTPUT_ENCODING = "TemplateOutputEncoding";
 34  
     public final static String TEMPLATE_INPUT_ENCODING = "TemplateEncoding";
 35  
     public final static String TEMPLATE_LOCALE = "TemplateLocale";
 36  
 
 37  
     /**
 38  
      * Name of the local properties file.  Only limited properties are
 39  
      * read from this (currently to do with file encodings).
 40  
      */
 41  
     public static final String WEBMACRO_LOCAL_FILE = "WebMacro.local";
 42  
 
 43  
     /**
 44  
      * Name of the default properties file.
 45  
      */
 46  
     public static final String WEBMACRO_DEFAULTS_FILE = "WebMacro.defaults";
 47  
 
 48  
     /**
 49  
      * Name of the properties file.
 50  
      */
 51  
     public static final String WEBMACRO_PROPERTIES_FILE = "WebMacro.properties";
 52  
 
 53  
 }