You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by mi...@apache.org on 2009/07/16 16:13:51 UTC

svn commit: r794686 [1/3] - in /openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria: Request.java Request_.java TestJPQLSubquery.java TestStringCriteria.java

Author: mikedd
Date: Thu Jul 16 14:13:51 2009
New Revision: 794686

URL: http://svn.apache.org/viewvc?rev=794686&view=rev
Log:
OPENJPA-1143: 
Fixing eol-style for new files

Modified:
    openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/Request.java   (contents, props changed)
    openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/Request_.java   (contents, props changed)
    openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/TestJPQLSubquery.java   (contents, props changed)
    openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/TestStringCriteria.java   (contents, props changed)

Modified: openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/Request.java
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/Request.java?rev=794686&r1=794685&r2=794686&view=diff
==============================================================================
--- openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/Request.java (original)
+++ openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/Request.java Thu Jul 16 14:13:51 2009
@@ -1,70 +1,70 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.    
- */
-package org.apache.openjpa.persistence.criteria;
-
-import java.sql.Date;
-
-import javax.persistence.*;
-
-@Entity
-public class Request {
-     @Id
-     int id;
-     
-     private short status;
-    
-     @ManyToOne(optional = false, fetch = FetchType.LAZY)
-     private Account account;
-
-     Date requestTime;
-
-     public int getId() {
-         return id;
-     }
-     
-     public void setId(int id) {
-         this.id = id;
-     }
-     
-     public short getStatus() {
-         return status;
-     }
-
-     public void setStatus(short status) {
-         this.status = status;
-     }
-
-     
-     public Account getAccount() {
-         return account;
-     }
-
-     public void setAccount(Account account) {
-         this.account = account;
-     }
-    
-     public Date getRequestTime() {
-         return requestTime;
-     }
-     
-     public void setRequestTime(Date requestTime) {
-         this.requestTime = requestTime;
-     }
-     
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.    
+ */
+package org.apache.openjpa.persistence.criteria;
+
+import java.sql.Date;
+
+import javax.persistence.*;
+
+@Entity
+public class Request {
+     @Id
+     int id;
+     
+     private short status;
+    
+     @ManyToOne(optional = false, fetch = FetchType.LAZY)
+     private Account account;
+
+     Date requestTime;
+
+     public int getId() {
+         return id;
+     }
+     
+     public void setId(int id) {
+         this.id = id;
+     }
+     
+     public short getStatus() {
+         return status;
+     }
+
+     public void setStatus(short status) {
+         this.status = status;
+     }
+
+     
+     public Account getAccount() {
+         return account;
+     }
+
+     public void setAccount(Account account) {
+         this.account = account;
+     }
+    
+     public Date getRequestTime() {
+         return requestTime;
+     }
+     
+     public void setRequestTime(Date requestTime) {
+         this.requestTime = requestTime;
+     }
+     
+}

Propchange: openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/Request.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/Request_.java
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/Request_.java?rev=794686&r1=794685&r2=794686&view=diff
==============================================================================
--- openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/Request_.java (original)
+++ openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/Request_.java Thu Jul 16 14:13:51 2009
@@ -1,18 +1,18 @@
-/** 
- *  Generated by OpenJPA MetaModel Generator Tool.
-**/
-
-package org.apache.openjpa.persistence.criteria;
-
-import java.sql.Date;
-
-import javax.persistence.metamodel.SingularAttribute;
-
-@javax.persistence.metamodel.StaticMetamodel
-(value=org.apache.openjpa.persistence.criteria.Request.class)
-public class Request_ {
-    public static volatile SingularAttribute<Request,Short> status;
-    public static volatile SingularAttribute<Request,Integer> id;
-    public static volatile SingularAttribute<Request,Account> account;
-    public static volatile SingularAttribute<Request,Date> requestTime;
-}
+/** 
+ *  Generated by OpenJPA MetaModel Generator Tool.
+**/
+
+package org.apache.openjpa.persistence.criteria;
+
+import java.sql.Date;
+
+import javax.persistence.metamodel.SingularAttribute;
+
+@javax.persistence.metamodel.StaticMetamodel
+(value=org.apache.openjpa.persistence.criteria.Request.class)
+public class Request_ {
+    public static volatile SingularAttribute<Request,Short> status;
+    public static volatile SingularAttribute<Request,Integer> id;
+    public static volatile SingularAttribute<Request,Account> account;
+    public static volatile SingularAttribute<Request,Date> requestTime;
+}

Propchange: openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/Request_.java
------------------------------------------------------------------------------
    svn:eol-style = native