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";
|
|
|
|
}
|