Author: fguillaume
Date: Fri Sep 24 17:35:53 2010
New Revision: 1000991
URL: http://svn.apache.org/viewvc?rev=1000991&view=rev
Log:
cleanup whitespace
Modified:
incubator/chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-support/src/main/java/org/apache/chemistry/opencmis/server/support/query/ColumnReference.java
Modified:
incubator/chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-support/src/main/java/org/apache/chemistry/opencmis/server/support/query/ColumnReference.java
URL:
http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-support/src/main/java/org/apache/chemistry/opencmis/server/support/query/ColumnReference.java?rev=1000991&r1=1000990&r2=1000991&view=diff
==============================================================================
---
incubator/chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-support/src/main/java/org/apache/chemistry/opencmis/server/support/query/ColumnReference.java
(original)
+++
incubator/chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-support/src/main/java/org/apache/chemistry/opencmis/server/support/query/ColumnReference.java
Fri Sep 24 17:35:53 2010
@@ -24,11 +24,11 @@ public class ColumnReference extends Cmi
private String typeQueryName; // type query name coming from query
statement
private String propQueryName; // property query name coming from query
statement
-
+
// The following fields are set when the types are resolved:
- private String propertyId;
- private TypeDefinition typeDef;
-
+ private String propertyId;
+ private TypeDefinition typeDef;
+
public ColumnReference(String typeQueryName, String propQueryName) {
this.typeQueryName = typeQueryName;
this.propQueryName = propQueryName;
@@ -38,11 +38,11 @@ public class ColumnReference extends Cmi
this.typeQueryName = null;
this.propQueryName = propQueryName;
}
-
+
public String getTypeQueryName() {
return typeQueryName;
}
-
+
public String getPropertyQueryName() {
return propQueryName;
}
@@ -51,20 +51,20 @@ public class ColumnReference extends Cmi
public String getName() {
return propQueryName;
}
-
+
void setTypeDefinition(String propertyId, TypeDefinition typeDef) {
this.typeDef = typeDef;
this.propertyId = propertyId;
}
-
+
public TypeDefinition getTypeDefinition() {
return typeDef;
}
-
+
public String getPropertyId() {
return propertyId;
}
-
+
public String toString() {
return "Column Reference for column " + propQueryName + " in type " +
typeQueryName;
}