// Constants.java
// Copyright (c) 2010 William Whitney
// All rights reserved.
// This software is released under the BSD license.
// Please see the accompanying LICENSE.txt for details.
package net.sourceforge.javaocr;
import java.util.logging.Logger;
/**
* Contains constants unique to entire application.
* @author William Whitney
*/
public class Constants
{
public Constants()
{
}
public static final String version = "1.101";
private static final Logger LOG = Logger.getLogger(Constants.class.getName());
}
|