~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/jdrmaa/src/com/sun/grid/drmaa/howto/Howto7.java

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*************************************************************************
 
2
 *
 
3
 *  The Contents of this file are made available subject to the terms of
 
4
 *  the Sun Industry Standards Source License Version 1.2
 
5
 *
 
6
 *  Sun Microsystems Inc., March, 2001
 
7
 *
 
8
 *
 
9
 *  Sun Industry Standards Source License Version 1.2
 
10
 *  =================================================
 
11
 *  The contents of this file are subject to the Sun Industry Standards
 
12
 *  Source License Version 1.2 (the "License"); You may not use this file
 
13
 *  except in compliance with the License. You may obtain a copy of the
 
14
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
15
 *
 
16
 *  Software provided under this License is provided on an "AS IS" basis,
 
17
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
18
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
19
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
20
 *  See the License for the specific provisions governing your rights and
 
21
 *  obligations concerning the Software.
 
22
 *
 
23
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
24
 *
 
25
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
26
 *
 
27
 *   All Rights Reserved.
 
28
 *
 
29
 ************************************************************************/
 
30
/*___INFO__MARK_END__*/
 
31
package com.sun.grid.drmaa.howto;
 
32
 
 
33
import org.ggf.drmaa.PartialTimestamp;
 
34
import org.ggf.drmaa.PartialTimestampFormat;
 
35
 
 
36
public class Howto7 {
 
37
   public static void main(String[] args) {
 
38
      try {
 
39
         PartialTimestamp date = new PartialTimestamp();
 
40
         PartialTimestampFormat format = new PartialTimestampFormat();
 
41
         
 
42
         date.set(PartialTimestamp.HOUR_OF_DAY, 13);
 
43
         date.set(PartialTimestamp.MINUTE, 0);
 
44
         
 
45
         System.out.println(format.format(date));
 
46
         
 
47
         date.setModifier(PartialTimestamp.DAY_OF_MONTH, 1);
 
48
         
 
49
         System.out.println(format.format(date));
 
50
         System.out.println(date.getTime().toString());
 
51
         
 
52
         date.setTimeInMillis(System.currentTimeMillis());
 
53
         
 
54
         System.out.println(format.format(date));
 
55
         
 
56
         date = format.parse("01/05 14:07:29");
 
57
         
 
58
         System.out.println(format.format(date));
 
59
      } catch (java.text.ParseException e) {
 
60
         System.out.println("Error: " + e.getMessage());
 
61
      }
 
62
   }
 
63
}