~sgdg/stado/stado25

« back to all changes in this revision

Viewing changes to src/org/postgresql/stado/parser/core/syntaxtree/Func_SysDate.java

  • Committer: Jim Mlodgenski
  • Date: 2011-08-30 22:39:37 UTC
  • mfrom: (1.1.3 stado)
  • Revision ID: jim@cirrusql.com-20110830223937-25q231a31x0e08b4
Merge from Spatial branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//
2
 
// Generated by JTB 1.2.2
3
 
//
4
 
 
5
 
package org.postgresql.stado.parser.core.syntaxtree;
6
 
 
7
 
/**
8
 
 * Grammar production:
9
 
 * f0 -> <SYSDATE_>
10
 
 */
11
 
public class Func_SysDate implements Node {
12
 
   public NodeToken f0;
13
 
 
14
 
   public Func_SysDate(NodeToken n0) {
15
 
      f0 = n0;
16
 
   }
17
 
 
18
 
   public Func_SysDate() {
19
 
      f0 = new NodeToken("SYSDATE");
20
 
   }
21
 
 
22
 
   public void accept(org.postgresql.stado.parser.core.visitor.Visitor v) {
23
 
      v.visit(this);
24
 
   }
25
 
   public Object accept(org.postgresql.stado.parser.core.visitor.ObjectVisitor v, Object argu) {
26
 
      return v.visit(this,argu);
27
 
   }
28
 
}
29