Author: tfischer
Date: Sun Nov 27 19:41:04 2011
New Revision: 1206812
URL: http://svn.apache.org/viewvc?rev=1206812&view=rev
Log:
Make checkstyle happy.
Modified:
db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/om/ColumnAccessByName.java
Modified:
db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/om/ColumnAccessByName.java
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/om/ColumnAccessByName.java?rev=1206812&r1=1206811&r2=1206812&view=diff
==============================================================================
---
db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/om/ColumnAccessByName.java
(original)
+++
db/torque/torque4/trunk/torque-runtime/src/main/java/org/apache/torque/om/ColumnAccessByName.java
Sun Nov 27 19:41:04 2011
@@ -35,7 +35,7 @@ public interface ColumnAccessByName
*
* @return The retrieved field value
*/
- public Object getByName(String field);
+ Object getByName(String field);
/**
* Set a field in the object by field (Java) name.
@@ -50,7 +50,7 @@ public interface ColumnAccessByName
* field object type.
* @throws TorqueException If a problem occurs with the set[Field] method.
*/
- public boolean setByName(String name, Object value)
+ boolean setByName(String name, Object value)
throws TorqueException;
/**
@@ -60,7 +60,7 @@ public interface ColumnAccessByName
*
* @return value of the field.
*/
- public Object getByPeerName(String name);
+ Object getByPeerName(String name);
/**
* Set field values by Peer Field Name-
@@ -75,18 +75,18 @@ public interface ColumnAccessByName
* field object type.
* @throws TorqueException If a problem occurs with the set[Field] method.
*/
- public boolean setByPeerName(String name, Object value)
+ boolean setByPeerName(String name, Object value)
throws TorqueException;
/**
* Retrieves a field from the object by position as specified in a database
- * schema for example.
+ * schema for example.
*
* @param pos field position.
*
* @return the value of the field.
*/
- public Object getByPosition(int pos);
+ Object getByPosition(int pos);
/**
* Set field values by it's position (zero based) in the XML schema.
@@ -101,6 +101,6 @@ public interface ColumnAccessByName
* field object type.
* @throws TorqueException If a problem occurs with the set[Field] method.
*/
- public boolean setByPosition(int position, Object value)
+ boolean setByPosition(int position, Object value)
throws TorqueException;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]