You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dw...@apache.org on 2009/10/12 04:23:16 UTC

svn commit: r824215 [3/3] - in /geronimo/specs/trunk/geronimo-jpa_2.0_spec/src/main/java/javax/persistence: ./ criteria/ metamodel/ spi/

Modified: geronimo/specs/trunk/geronimo-jpa_2.0_spec/src/main/java/javax/persistence/spi/PersistenceUnitTransactionType.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jpa_2.0_spec/src/main/java/javax/persistence/spi/PersistenceUnitTransactionType.java?rev=824215&r1=824214&r2=824215&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jpa_2.0_spec/src/main/java/javax/persistence/spi/PersistenceUnitTransactionType.java (original)
+++ geronimo/specs/trunk/geronimo-jpa_2.0_spec/src/main/java/javax/persistence/spi/PersistenceUnitTransactionType.java Mon Oct 12 02:23:08 2009
@@ -25,7 +25,9 @@
 
 package javax.persistence.spi;
 
+
 public enum PersistenceUnitTransactionType {
-	JTA,
-	RESOURCE_LOCAL
+
+    JTA,
+    RESOURCE_LOCAL
 }

Modified: geronimo/specs/trunk/geronimo-jpa_2.0_spec/src/main/java/javax/persistence/spi/ProviderUtil.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jpa_2.0_spec/src/main/java/javax/persistence/spi/ProviderUtil.java?rev=824215&r1=824214&r2=824215&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jpa_2.0_spec/src/main/java/javax/persistence/spi/ProviderUtil.java (original)
+++ geronimo/specs/trunk/geronimo-jpa_2.0_spec/src/main/java/javax/persistence/spi/ProviderUtil.java Mon Oct 12 02:23:08 2009
@@ -23,15 +23,14 @@
 // DO NOT add / change / or delete method signatures!
 //
 
-
 package javax.persistence.spi;
 
 
 public interface ProviderUtil { 
 
-	public LoadState isLoadedWithoutReference(Object entity, String attributeName);
+    public LoadState isLoadedWithoutReference(Object entity, String attributeName);
 
-	public LoadState isLoadedWithReference(Object entity, String attributeName);
+    public LoadState isLoadedWithReference(Object entity, String attributeName);
 
-	public LoadState isLoaded(Object entity);
+    public LoadState isLoaded(Object entity);
 }