[teiid-commits] teiid SVN: r4314 - in trunk/client-jdk15: src/main/java/retroruntime/org/teiid and 3 other directories.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Mon Aug 13 14:11:24 EDT 2012


Author: shawkins
Date: 2012-08-13 14:11:24 -0400 (Mon, 13 Aug 2012)
New Revision: 4314

Added:
   trunk/client-jdk15/src/main/java/retroruntime/org/teiid/client/
   trunk/client-jdk15/src/main/java/retroruntime/org/teiid/client/plan/
   trunk/client-jdk15/src/main/java/retroruntime/org/teiid/client/plan/_PlanNode.java
Modified:
   trunk/client-jdk15/pom.xml
   trunk/client-jdk15/src/main/resources/net/sf/retrotranslator/registry/backport15.properties
   trunk/client-jdk15/src/main/resources/net/sf/retrotranslator/registry/embed15.properties
Log:
TEIID-2088 adding back the backport and allowing for show plan

Modified: trunk/client-jdk15/pom.xml
===================================================================
--- trunk/client-jdk15/pom.xml	2012-08-13 18:02:20 UTC (rev 4313)
+++ trunk/client-jdk15/pom.xml	2012-08-13 18:11:24 UTC (rev 4314)
@@ -14,5 +14,10 @@
 			<groupId>org.jboss.teiid</groupId>
 			<artifactId>teiid-common-core</artifactId>
 		</dependency>
+		
+		<dependency>
+			<groupId>org.jboss.teiid</groupId>
+			<artifactId>teiid-client</artifactId>
+		</dependency>
 	</dependencies>
 </project>

Added: trunk/client-jdk15/src/main/java/retroruntime/org/teiid/client/plan/_PlanNode.java
===================================================================
--- trunk/client-jdk15/src/main/java/retroruntime/org/teiid/client/plan/_PlanNode.java	                        (rev 0)
+++ trunk/client-jdk15/src/main/java/retroruntime/org/teiid/client/plan/_PlanNode.java	2012-08-13 18:11:24 UTC (rev 4314)
@@ -0,0 +1,34 @@
+/*
+ * JBoss, Home of Professional Open Source
+ *
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * by the @author tags. See the COPYRIGHT.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package retroruntime.org.teiid.client.plan;
+
+import org.teiid.client.plan.PlanNode;
+
+public class _PlanNode {
+
+	public static String toXml(@SuppressWarnings("unused") PlanNode planNode) {
+		return null;
+	}
+	
+}


Property changes on: trunk/client-jdk15/src/main/java/retroruntime/org/teiid/client/plan/_PlanNode.java
___________________________________________________________________
Added: svn:mime-type
   + text/plain

Modified: trunk/client-jdk15/src/main/resources/net/sf/retrotranslator/registry/backport15.properties
===================================================================
--- trunk/client-jdk15/src/main/resources/net/sf/retrotranslator/registry/backport15.properties	2012-08-13 18:02:20 UTC (rev 4313)
+++ trunk/client-jdk15/src/main/resources/net/sf/retrotranslator/registry/backport15.properties	2012-08-13 18:11:24 UTC (rev 4314)
@@ -1 +1,23 @@
-retroruntime
\ No newline at end of file
+retroruntime
+java.util.concurrent:edu.emory.mathcs.backport.java.util.concurrent
+java.lang.StringBuilder:java.lang.StringBuffer
+java.util.Deque:edu.emory.mathcs.backport.java.util.Deque
+java.util.ArrayDeque:edu.emory.mathcs.backport.java.util.ArrayDeque
+java.util.Queue:edu.emory.mathcs.backport.java.util.Queue
+java.util.AbstractQueue:edu.emory.mathcs.backport.java.util.AbstractQueue
+java.util.PriorityQueue:edu.emory.mathcs.backport.java.util.PriorityQueue
+java.lang.System.nanoTime:edu.emory.mathcs.backport.java.util.concurrent.helpers.Utils.nanoTime
+java.util.concurrent.locks.Condition.awaitNanos:edu.emory.mathcs.backport.java.util.concurrent.helpers.Utils.awaitNanos
+java.util.Collections.addAll:edu.emory.mathcs.backport.java.util.Collections.addAll
+java.util.Collections.checkedCollection:edu.emory.mathcs.backport.java.util.Collections.checkedCollection
+java.util.Collections.checkedList:edu.emory.mathcs.backport.java.util.Collections.checkedList
+java.util.Collections.checkedMap:edu.emory.mathcs.backport.java.util.Collections.checkedMap
+java.util.Collections.checkedSet:edu.emory.mathcs.backport.java.util.Collections.checkedSet
+java.util.Collections.checkedSortedMap:edu.emory.mathcs.backport.java.util.Collections.checkedSortedMap
+java.util.Collections.checkedSortedSet:edu.emory.mathcs.backport.java.util.Collections.checkedSortedSet
+java.util.Collections.disjoint:edu.emory.mathcs.backport.java.util.Collections.disjoint
+java.util.Collections.frequency:edu.emory.mathcs.backport.java.util.Collections.frequency
+java.util.Collections.reverseOrder:edu.emory.mathcs.backport.java.util.Collections.reverseOrder
+java.util.Collections.newSetFromMap:edu.emory.mathcs.backport.java.util.Collections.newSetFromMap
+java.util.Arrays.copyOf:edu.emory.mathcs.backport.java.util.Arrays.copyOf
+java.util.Arrays.copyOfRange:edu.emory.mathcs.backport.java.util.Arrays.copyOfRange
\ No newline at end of file

Modified: trunk/client-jdk15/src/main/resources/net/sf/retrotranslator/registry/embed15.properties
===================================================================
--- trunk/client-jdk15/src/main/resources/net/sf/retrotranslator/registry/embed15.properties	2012-08-13 18:02:20 UTC (rev 4313)
+++ trunk/client-jdk15/src/main/resources/net/sf/retrotranslator/registry/embed15.properties	2012-08-13 18:11:24 UTC (rev 4314)
@@ -1 +1,2 @@
-retroruntime
\ No newline at end of file
+retroruntime
+edu.emory.mathcs.backport
\ No newline at end of file



More information about the teiid-commits mailing list