|
From: <pan...@us...> - 2009-12-02 00:53:26
|
Revision: 126
http://trippi.svn.sourceforge.net/trippi/?rev=126&view=rev
Author: pangloss
Date: 2009-12-02 00:53:10 +0000 (Wed, 02 Dec 2009)
Log Message:
-----------
rebuild using java5 (instead of 6)
Modified Paths:
--------------
trunk/lib/mulgara-core-2.1.4.jar
trunk/src/java/org/trippi/impl/mulgara/CollapsedAnswer.java
Modified: trunk/lib/mulgara-core-2.1.4.jar
===================================================================
(Binary files differ)
Modified: trunk/src/java/org/trippi/impl/mulgara/CollapsedAnswer.java
===================================================================
--- trunk/src/java/org/trippi/impl/mulgara/CollapsedAnswer.java 2009-11-12 04:56:31 UTC (rev 125)
+++ trunk/src/java/org/trippi/impl/mulgara/CollapsedAnswer.java 2009-12-02 00:53:10 UTC (rev 126)
@@ -84,10 +84,6 @@
///////////////// from org.mulgara.query.Answer ///////////////////
///////////////////////////////////////////////////////////////////
- /**
- * {@inheritDoc}
- */
- @Override
public Object getObject(int column) throws TuplesException {
return m_values[column];
}
@@ -95,7 +91,6 @@
/**
* {@inheritDoc}
*/
- @Override
public Object getObject(String columnName) throws TuplesException {
return getObject(getColumnIndex(columnName));
}
@@ -108,7 +103,6 @@
/**
* {@inheritDoc}
*/
- @Override
public void beforeFirst() throws TuplesException {
// don't do anything -- this is a one-use impl
}
@@ -116,7 +110,6 @@
/**
* {@inheritDoc}
*/
- @Override
public void close() throws TuplesException {
m_wrappedAnswer.close();
}
@@ -124,7 +117,6 @@
/**
* {@inheritDoc}
*/
- @Override
public int getColumnIndex(Variable column) throws TuplesException {
return getColumnIndex(column.getName());
}
@@ -139,7 +131,6 @@
/**
* Return the number of variables (columns).
*/
- @Override
public int getNumberOfVariables() {
return m_variables.length;
}
@@ -147,7 +138,6 @@
/**
* {@inheritDoc}
*/
- @Override
public Variable[] getVariables() {
return m_variables;
}
@@ -157,7 +147,6 @@
*
* This method is unimplemented and will always throw a TuplesException.
*/
- @Override
public boolean isUnconstrained() throws TuplesException {
throw new TuplesException("isUnconstrained() not implemented.");
}
@@ -167,7 +156,6 @@
*
* This method is unimplemented and will always throw a TuplesException.
*/
- @Override
public long getRowCount() throws TuplesException {
throw new TuplesException("getRowCount() not implemented.");
}
@@ -177,8 +165,7 @@
*
* This method is unimplemented and will always throw a TuplesException.
*/
- @Override
- public long getRowExpectedCount() throws TuplesException {
+ public long getRowExpectedCount() throws TuplesException {
throw new TuplesException("getRowExpectCount() not implemented.");
}
@@ -187,7 +174,6 @@
*
* This method is unimplemented and will always throw a TuplesException.
*/
- @Override
public long getRowUpperBound() throws TuplesException {
throw new TuplesException("getRowUpperBound() not implemented.");
}
@@ -197,7 +183,6 @@
*
* This method is unimplemented and will always throw a TuplesException.
*/
- @Override
public int getRowCardinality() throws TuplesException {
throw new TuplesException("getRowCardinality() not implemented.");
}
@@ -205,7 +190,6 @@
/**
* {@inheritDoc}
*/
- @Override
public boolean next() throws TuplesException {
if (m_values == null) return false;
m_values = m_currentRowGroup.nextValues();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|