~gabriel1984sibiu/mediathekview1/msearch

« back to all changes in this revision

Viewing changes to src/main/java/mSearch/tool/Datum.java

  • Committer: Alexander Finkhäuser
  • Date: 2016-11-30 04:04:53 UTC
  • mfrom: (686.2.18)
  • Revision ID: git-v1:af78519da2ca58b778975da6e050392be4272956
Tags: 2.1.0
Merge branch 'release/2.1.0'
Closed #54

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
import java.text.SimpleDateFormat;
23
23
import java.util.Date;
24
24
 
 
25
@SuppressWarnings("serial")
25
26
public class Datum extends Date {
26
 
 
27
 
    private static final long serialVersionUID = 1L;
28
 
 
29
27
    private final static SimpleDateFormat dateFormatter1 = new SimpleDateFormat("dd.MM.yyyy");
30
28
    private final static SimpleDateFormat dateFormatter2 = new SimpleDateFormat("yyyy.MM.dd");
31
29