You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vxquery.apache.org by pr...@apache.org on 2012/07/11 04:15:38 UTC

svn commit: r1359988 - in /incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api: ./ IDate.java ITime.java

Author: prestonc
Date: Wed Jul 11 02:15:38 2012
New Revision: 1359988

URL: http://svn.apache.org/viewvc?rev=1359988&view=rev
Log:
Test commit of the basic date and time interfaces.

Added:
    incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api/
    incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api/IDate.java   (with props)
    incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api/ITime.java   (with props)

Added: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api/IDate.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api/IDate.java?rev=1359988&view=auto
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api/IDate.java (added)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api/IDate.java Wed Jul 11 02:15:38 2012
@@ -0,0 +1,20 @@
+package org.apache.vxquery.datamodel.api;
+
+public interface IDate {
+    public long getYear();
+
+    public long getMonth();
+
+    public long getDay();
+
+    public long getTimezoneHour();
+
+    public long getTimezoneMinute();
+
+    public long getTimezone();
+
+    public long getYearMonth();
+
+    public long getDayTime();
+
+}

Propchange: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api/IDate.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api/ITime.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api/ITime.java?rev=1359988&view=auto
==============================================================================
--- incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api/ITime.java (added)
+++ incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api/ITime.java Wed Jul 11 02:15:38 2012
@@ -0,0 +1,18 @@
+package org.apache.vxquery.datamodel.api;
+
+public interface ITime {
+    public long getHour();
+
+    public long getMinute();
+
+    public long getMilliSecond();
+
+    public long getTimezoneHour();
+
+    public long getTimezoneMinute();
+
+    public long getTimezone();
+
+    public long getDayTime();
+
+}

Propchange: incubator/vxquery/branches/vxquery_algebricks/vxquery-core/src/main/java/org/apache/vxquery/datamodel/api/ITime.java
------------------------------------------------------------------------------
    svn:eol-style = native