git-svn-id: http://talendforge.org/svn/tos/trunk@73834 f6f1c999-d317-4740-80b0-e6d1abc6f99e
16 lines
268 B
Java
16 lines
268 B
Java
package routines.system;
|
|
|
|
/**
|
|
* store some global constant
|
|
* @author Administrator
|
|
*
|
|
*/
|
|
public abstract class Constant {
|
|
|
|
/**
|
|
* the default pattern for date parse and format
|
|
*/
|
|
public static final String dateDefaultPattern = "dd-MM-yyyy";
|
|
|
|
}
|