Author: arminw
Date: Wed Jan 30 17:37:33 2008
New Revision: 616978
URL: http://svn.apache.org/viewvc?rev=616978&view=rev
Log:
fix javadoc
Modified:
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/AbstractCriterion.java
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/IdentityCriteria.java
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/InCriteria.java
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/ReportQueryByCriteria.java
Modified:
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/AbstractCriterion.java
URL:
http://svn.apache.org/viewvc/db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/AbstractCriterion.java?rev=616978&r1=616977&r2=616978&view=diff
==============================================================================
---
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/AbstractCriterion.java
(original)
+++
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/AbstractCriterion.java
Wed Jan 30 17:37:33 2008
@@ -48,7 +48,7 @@
}
/**
- * @param criteria
+ * @param parent a criterion
*/
protected void setParentCriterion(Criterion parent)
{
Modified:
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/IdentityCriteria.java
URL:
http://svn.apache.org/viewvc/db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/IdentityCriteria.java?rev=616978&r1=616977&r2=616978&view=diff
==============================================================================
---
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/IdentityCriteria.java
(original)
+++
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/IdentityCriteria.java
Wed Jan 30 17:37:33 2008
@@ -41,7 +41,7 @@
/**
* Build IdentityCriteria with EQUAL clause
* @param anAttribute the name of the attribute
- * @param aValue an Identity
+ * @param anIdentity an Identity
*/
static IdentityCriteria buildEqualToCriteria(Object anAttribute, Identity
anIdentity)
{
@@ -51,7 +51,7 @@
/**
* Build IdentityCriteria with NOT EQUAL clause
* @param anAttribute the name of the attribute
- * @param aValue an Identity
+ * @param anIdentity an Identity
*/
static IdentityCriteria buildNotEqualToCriteria(Object anAttribute,
Identity anIdentity)
{
@@ -66,7 +66,7 @@
* Constructor.
*
* @param anAttribute the name of the attribute
- * @param aValue an Identity
+ * @param identity an Identity
* @param negative clause-indicator : true=NOT EQUAL, false=EQUAL
*/
IdentityCriteria(Object anAttribute, Identity identity, boolean negative)
Modified:
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/InCriteria.java
URL:
http://svn.apache.org/viewvc/db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/InCriteria.java?rev=616978&r1=616977&r2=616978&view=diff
==============================================================================
---
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/InCriteria.java
(original)
+++
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/InCriteria.java
Wed Jan 30 17:37:33 2008
@@ -45,7 +45,7 @@
/**
* Build InCriteria with IN clause
* @param anAttribute the name of the attribute
- * @param aValue an Identity
+ * @param values A collection of values
*/
static InCriteria buildInCriteria(Object anAttribute, Collection values)
{
@@ -55,7 +55,7 @@
/**
* Build InCriteria with IN clause
* @param aColumn the name of the column (do not translate)
- * @param aValue an Identity
+ * @param values A collection of values
*/
static InCriteria buildColumnInCriteria(Object aColumn, Collection values)
{
@@ -65,7 +65,7 @@
/**
* Build InCriteria with NOT IN clause
* @param anAttribute the name of the attribute
- * @param aValue an Identity
+ * @param values A collection of values
*/
static InCriteria buildNotInCriteria(Object anAttribute, Collection
values)
{
Modified:
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/ReportQueryByCriteria.java
URL:
http://svn.apache.org/viewvc/db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/ReportQueryByCriteria.java?rev=616978&r1=616977&r2=616978&view=diff
==============================================================================
---
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/ReportQueryByCriteria.java
(original)
+++
db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/query/ReportQueryByCriteria.java
Wed Jan 30 17:37:33 2008
@@ -46,7 +46,7 @@
/**
* Constructor for ReportQueryByCriteria.
* @param targetClass
- * @param attributes[]
+ * @param attributes
* @param criteria
* @param distinct
*/
@@ -59,7 +59,7 @@
/**
* Constructor for ReportQueryByCriteria.
* @param targetClass
- * @param attributes[]
+ * @param attributes
* @param criteria
*/
public ReportQueryByCriteria(Class targetClass, String[] attributes,
Criteria criteria)
@@ -192,7 +192,4 @@
{
m_attrToFld = attrToFld;
}
-
-
-
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]