Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpfullbright2007-05-05 19:52:49 +0000
committerpfullbright2007-05-05 19:52:49 +0000
commit765d3acc77568028486da87b942a21f741496d00 (patch)
treeb425893e1109a7d09f47b944c2b4cb88550c065b /jpa/plugins/org.eclipse.jpt.core/property_files
parentce015921251d81547537781ea4ca679fec4376c5 (diff)
downloadwebtools.dali-765d3acc77568028486da87b942a21f741496d00.tar.gz
webtools.dali-765d3acc77568028486da87b942a21f741496d00.tar.xz
webtools.dali-765d3acc77568028486da87b942a21f741496d00.zip
Added project configuration options, validation for said options, and project rebuild on connection/disconnection
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/property_files')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/property_files/jpa_core.properties3
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/property_files/jpa_validation.properties1
2 files changed, 4 insertions, 0 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/property_files/jpa_core.properties b/jpa/plugins/org.eclipse.jpt.core/property_files/jpa_core.properties
index 8a59a2cb7d..f1e4174b06 100644
--- a/jpa/plugins/org.eclipse.jpt.core/property_files/jpa_core.properties
+++ b/jpa/plugins/org.eclipse.jpt.core/property_files/jpa_core.properties
@@ -12,6 +12,9 @@
VALIDATE_PLATFORM_NOT_SPECIFIED=Platform must be specified
VALIDATE_CONNECTION_NOT_SPECIFIED=Connection must be specified
VALIDATE_CONNECTION_NOT_CONNECTED=Connection must be active to get data source specific help and validation.
+VALIDATE_RUNTIME_NOT_SPECIFIED=There is no server runtime associated with this project to provide a JPA implementation
+VALIDATE_RUNTIME_DOES_NOT_SUPPORT_EJB_30=The server runtime selected does not support EJB 3.0, so it likely does not provide a JPA implementation
+VALIDATE_LIBRARY_NOT_SPECIFIED=No JPA implementation library specified
SYNCHRONIZE_CLASSES_JOB=Synchronizing classes
SYNCHRONIZING_CLASSES_TASK=Synchronizing classes ...
INVALID_PERSISTENCE_XML_CONTENT=Invalid persistence.xml content
diff --git a/jpa/plugins/org.eclipse.jpt.core/property_files/jpa_validation.properties b/jpa/plugins/org.eclipse.jpt.core/property_files/jpa_validation.properties
index bcec2fa7f6..016b9cf873 100644
--- a/jpa/plugins/org.eclipse.jpt.core/property_files/jpa_validation.properties
+++ b/jpa/plugins/org.eclipse.jpt.core/property_files/jpa_validation.properties
@@ -25,6 +25,7 @@ PERSISTENCE_UNIT_NONEXISTENT_CLASS=Class \"{0}\" cannot be resolved
PERSISTENCE_UNIT_INVALID_CLASS=Class \"{0}\" is not annotated as a persistent class
PERSISTENCE_UNIT_DUPLICATE_CLASS=Duplicate class \"{0}\"
ENTITY_MAPPINGS_MULTIPLE_METADATA=Metadata for persistence unit \"{0}\" specified in multiple mapping files
+PERSISTENT_TYPE_UNSPECIFIED_CONTEXT=This mapped class is not contained in any persistence unit
PERSISTENT_TYPE_UNSPECIFIED_CLASS=Unspecified class
PERSISTENT_TYPE_UNRESOLVED_CLASS=Class \"{0}\" cannot be resolved
ENTITY_NO_ID=Entity \"{0}\" has no Id or EmbeddedId

Back to the top