Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbvosburgh2009-04-06 18:14:44 +0000
committerbvosburgh2009-04-06 18:14:44 +0000
commit452e55147020a06aa3f6bda36c3c816c034c0790 (patch)
tree8b2a3d42b39c9aae6b03421692dae15ccf882ea5 /jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/persistence
parentade32cc190613ad38040020998f53d1d8bc223b6 (diff)
downloadwebtools.dali-452e55147020a06aa3f6bda36c3c816c034c0790.tar.gz
webtools.dali-452e55147020a06aa3f6bda36c3c816c034c0790.tar.xz
webtools.dali-452e55147020a06aa3f6bda36c3c816c034c0790.zip
minor tweaks
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/persistence')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/persistence/PersistenceUnitTransactionType.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/persistence/PersistenceUnitTransactionType.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/persistence/PersistenceUnitTransactionType.java
index 46e1a84673..27906884c2 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/persistence/PersistenceUnitTransactionType.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/context/persistence/PersistenceUnitTransactionType.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2008 Oracle. All rights reserved.
+ * Copyright (c) 2007, 2009 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
@@ -22,10 +22,10 @@ import org.eclipse.jpt.core.resource.persistence.XmlPersistenceUnitTransactionTy
*/
public enum PersistenceUnitTransactionType
{
- /** Corresponds to JTA transaction type **/
+ /** Corresponds to JTA transaction type */
JTA,
- /** Corresponds to RESOURCE_LOCAL transaction type **/
+ /** Corresponds to RESOURCE_LOCAL transaction type */
RESOURCE_LOCAL;
public static PersistenceUnitTransactionType fromXmlResourceModel(XmlPersistenceUnitTransactionType transactionType) {

Back to the top