~ubuntu-branches/ubuntu/utopic/jing-trang/utopic

« back to all changes in this revision

Viewing changes to mod/validate/src/main/com/thaiopensource/validate/Flag.java

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Thibault
  • Date: 2009-09-01 15:53:03 UTC
  • Revision ID: james.westby@ubuntu.com-20090901155303-2kweef05h5v9j3ni
Tags: upstream-20090818
ImportĀ upstreamĀ versionĀ 20090818

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package com.thaiopensource.validate;
 
2
 
 
3
/**
 
4
 * A class with a unique value, used as the value of properties whose
 
5
 * significance is purely whether or not they are present in the
 
6
 * PropertyMap.
 
7
 */
 
8
public class Flag {
 
9
  private Flag() { }
 
10
  /**
 
11
   * The unique value of this class.
 
12
   */
 
13
  public static final Flag PRESENT = new Flag();
 
14
}