Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.googlecode.gwtphonegap.client.globalization;

public class DateOptions {
  public static final String LENGTH_SHORT = "short";
  public static final String LENGTH_MEDIUM = "medium";
  public static final String LENGTH_LONG = "long";
  public static final String LENGTH_FULL = "long";

  public static final String SELECTOR_DATE = "date";
  public static final String SELECTOR_TIME = "time";
  public static final String SELECTOR_DATE_AND_TIME = "date and time";

  private String formatLength;
  private String selector;

  public DateOptions() {

  }

  public DateOptions(String formatLength, String selector) {
    this.formatLength = formatLength;
    this.selector = selector;
  }

  public String getFormatLength() {
    return formatLength;
  }

  public String getSelector() {
    return selector;
  }

  public void setFormatLength(String formatLength) {
    this.formatLength = formatLength;
  }

  public void setSelector(String selector) {
    this.selector = selector;
  }
}

Commits for litesoft/trunk/mobileGWT/gwt-phonegap/src/main/java/com/googlecode/gwtphonegap/client/globalization/DateOptions.java

Diff revisions: vs.
Revision Author Commited Message
906 GeorgeS picture GeorgeS Fri 07 Jun, 2013 22:50:38 +0000

Update to latest gwt-phonegap & MGWT.