You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by aa...@apache.org on 2006/07/14 19:23:24 UTC

svn commit: r421956 - in /incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example: .classpath .settings/org.eclipse.jdt.core.prefs .settings/org.eclipse.jdt.ui.prefs src/main/java/org/apache/cayenne/jpa/example/Main.java

Author: aadamchik
Date: Fri Jul 14 10:23:24 2006
New Revision: 421956

URL: http://svn.apache.org/viewvc?rev=421956&view=rev
Log:
no change to the JPA example, just eclipse preferences and some logging tweaks

Modified:
    incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.classpath
    incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.settings/org.eclipse.jdt.core.prefs
    incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.settings/org.eclipse.jdt.ui.prefs
    incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/src/main/java/org/apache/cayenne/jpa/example/Main.java

Modified: incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.classpath
URL: http://svn.apache.org/viewvc/incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.classpath?rev=421956&r1=421955&r2=421956&view=diff
==============================================================================
--- incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.classpath (original)
+++ incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.classpath Fri Jul 14 10:23:24 2006
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <classpath>
 	<classpathentry kind="src" path="src/main/java"/>
-	<classpathentry kind="src" path="src/main/resources"/>
+	<classpathentry excluding="**" output="src/main/resources" kind="src" path="src/main/resources"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
 	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
 	<classpathentry kind="output" path="target/classes"/>

Modified: incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.settings/org.eclipse.jdt.core.prefs
URL: http://svn.apache.org/viewvc/incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.settings/org.eclipse.jdt.core.prefs?rev=421956&r1=421955&r2=421956&view=diff
==============================================================================
--- incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.settings/org.eclipse.jdt.core.prefs (original)
+++ incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.settings/org.eclipse.jdt.core.prefs Fri Jul 14 10:23:24 2006
@@ -1,4 +1,4 @@
-#Sat Apr 29 10:10:52 EDT 2006
+#Sat May 13 15:51:13 EDT 2006
 eclipse.preferences.version=1
 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
@@ -61,6 +61,7 @@
 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=48
 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=48
 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=48
+org.eclipse.jdt.core.formatter.alignment_for_assignment=0
 org.eclipse.jdt.core.formatter.alignment_for_binary_expression=48
 org.eclipse.jdt.core.formatter.alignment_for_compact_if=16
 org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=48
@@ -110,10 +111,12 @@
 org.eclipse.jdt.core.formatter.continuation_indentation=2
 org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2
 org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false
+org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true
 org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true
 org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true
 org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true
 org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true
+org.eclipse.jdt.core.formatter.indent_empty_lines=false
 org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true
 org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
 org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
@@ -127,6 +130,7 @@
 org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=insert
 org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=insert
 org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert
+org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert
 org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=insert
 org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert
 org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert
@@ -270,6 +274,7 @@
 org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert
 org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert
 org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert
+org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert
 org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert
 org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert
 org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert

Modified: incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.settings/org.eclipse.jdt.ui.prefs
URL: http://svn.apache.org/viewvc/incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.settings/org.eclipse.jdt.ui.prefs?rev=421956&r1=421955&r2=421956&view=diff
==============================================================================
--- incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.settings/org.eclipse.jdt.ui.prefs (original)
+++ incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/.settings/org.eclipse.jdt.ui.prefs Fri Jul 14 10:23:24 2006
@@ -1,6 +1,6 @@
-#Sat Apr 29 10:10:53 EDT 2006
+#Sat May 13 15:51:13 EDT 2006
 eclipse.preferences.version=1
-formatter_settings_version=8
+formatter_settings_version=10
 internal.default.compliance=default
 org.eclipse.jdt.ui.ignorelowercasenames=true
 org.eclipse.jdt.ui.importorder=java;javax;org;com;

Modified: incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/src/main/java/org/apache/cayenne/jpa/example/Main.java
URL: http://svn.apache.org/viewvc/incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/src/main/java/org/apache/cayenne/jpa/example/Main.java?rev=421956&r1=421955&r2=421956&view=diff
==============================================================================
--- incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/src/main/java/org/apache/cayenne/jpa/example/Main.java (original)
+++ incubator/cayenne/jpa/trunk/cayenne-jpa-annotations-example/src/main/java/org/apache/cayenne/jpa/example/Main.java Fri Jul 14 10:23:24 2006
@@ -62,7 +62,7 @@
         // now that the mapping is loaded, create test DB
         schemaHelper.setupDatabase();
 
-        this.logger = LogFactory.getLog("3t-client-demo");
+        this.logger = LogFactory.getLog(getClass());
     }
 
     void execute() {