Author: ningjiang
Date: Thu Dec 11 18:47:51 2008
New Revision: 725893
URL: http://svn.apache.org/viewvc?rev=725893&view=rev
Log:
Fixed the cs errors of components
Modified:
activemq/camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsEndpoint.java
activemq/camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsProducer.java
activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/config/JmsEndpointWithCustomDestinationTest.java
activemq/camel/trunk/components/camel-josql/src/main/java/org/apache/camel/builder/sql/SQL.java
activemq/camel/trunk/components/camel-jpa/src/main/java/org/apache/camel/component/jpa/Consumed.java
activemq/camel/trunk/components/camel-juel/src/main/java/org/apache/camel/language/juel/EL.java
activemq/camel/trunk/components/camel-jxpath/src/main/java/org/apache/camel/language/jxpath/JXPath.java
activemq/camel/trunk/components/camel-ognl/src/main/java/org/apache/camel/language/ognl/OGNL.java
activemq/camel/trunk/components/camel-ruby/src/main/java/org/apache/camel/ruby/RubyCamel.java
activemq/camel/trunk/components/camel-ruby/src/main/java/org/apache/camel/ruby/ScriptRouteBuilder.java
activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RouteUsingNestedScopesTest.java
activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RubyTest.java
activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RunScript.java
activemq/camel/trunk/components/camel-saxon/src/main/java/org/apache/camel/component/xquery/XQuery.java
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Groovy.java
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/JavaScript.java
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/PHP.java
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Python.java
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Ruby.java
Modified:
activemq/camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsEndpoint.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsEndpoint.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsEndpoint.java
(original)
+++
activemq/camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsEndpoint.java
Thu Dec 11 18:47:51 2008
@@ -16,28 +16,28 @@
*/
package org.apache.camel.component.jms;
+import javax.jms.ConnectionFactory;
+import javax.jms.Destination;
+import javax.jms.ExceptionListener;
import javax.jms.Message;
import javax.jms.TemporaryQueue;
import javax.jms.TemporaryTopic;
-import javax.jms.ConnectionFactory;
-import javax.jms.ExceptionListener;
-import javax.jms.Destination;
+import org.apache.camel.Component;
import org.apache.camel.Exchange;
import org.apache.camel.ExchangePattern;
import org.apache.camel.HeaderFilterStrategyAware;
import org.apache.camel.PollingConsumer;
import org.apache.camel.Processor;
-import org.apache.camel.Component;
import org.apache.camel.component.jms.requestor.Requestor;
import org.apache.camel.impl.DefaultEndpoint;
import org.apache.camel.spi.HeaderFilterStrategy;
+import org.springframework.core.task.TaskExecutor;
import org.springframework.jms.core.JmsOperations;
import org.springframework.jms.core.JmsTemplate;
import org.springframework.jms.listener.AbstractMessageListenerContainer;
-import org.springframework.jms.support.destination.DestinationResolver;
import org.springframework.jms.support.converter.MessageConverter;
-import org.springframework.core.task.TaskExecutor;
+import org.springframework.jms.support.destination.DestinationResolver;
import org.springframework.transaction.PlatformTransactionManager;
/**
@@ -98,8 +98,7 @@
jmsTemplate.setPubSubDomain(pubSubDomain);
if (destinationName != null) {
jmsTemplate.setDefaultDestinationName(destinationName);
- }
- else if (destination != null) {
+ } else if (destination != null) {
jmsTemplate.setDefaultDestination(destination);
}
/*
@@ -734,9 +733,7 @@
}
if (destination != null) {
return scheme + ":" + destination;
- }
- else
- if (destinationName != null) {
+ } else if (destinationName != null) {
return scheme + ":" + destinationName;
}
DestinationResolver resolver = getDestinationResolver();
Modified:
activemq/camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsProducer.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsProducer.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsProducer.java
(original)
+++
activemq/camel/trunk/components/camel-jms/src/main/java/org/apache/camel/component/jms/JmsProducer.java
Thu Dec 11 18:47:51 2008
@@ -193,13 +193,11 @@
if (destinationName != null) {
template.send(destinationName, messageCreator, callback);
- }
- else if (destination != null) {
+ } else if (destination != null) {
// TODO cannot pass in callback using destination?
template.send(destination.toString(), messageCreator,
callback);
// template.send(destination, messageCreator);
- }
- else {
+ } else {
throw new IllegalArgumentException("Neither destination nor
destinationName is specified on this endpoint: " + endpoint);
}
@@ -249,11 +247,9 @@
};
if (destinationName != null) {
getInOnlyTemplate().send(destinationName, messageCreator);
- }
- else if (destination != null) {
+ } else if (destination != null) {
getInOnlyTemplate().send(destination, messageCreator);
- }
- else {
+ } else {
throw new IllegalArgumentException("Neither destination nor
destinationName is specified on this endpoint: " + endpoint);
}
Modified:
activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/config/JmsEndpointWithCustomDestinationTest.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/config/JmsEndpointWithCustomDestinationTest.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/config/JmsEndpointWithCustomDestinationTest.java
(original)
+++
activemq/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/config/JmsEndpointWithCustomDestinationTest.java
Thu Dec 11 18:47:51 2008
@@ -1,5 +1,4 @@
/**
- *
* 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.
@@ -7,7 +6,7 @@
* (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
+ * 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,
Modified:
activemq/camel/trunk/components/camel-josql/src/main/java/org/apache/camel/builder/sql/SQL.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-josql/src/main/java/org/apache/camel/builder/sql/SQL.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-josql/src/main/java/org/apache/camel/builder/sql/SQL.java
(original)
+++
activemq/camel/trunk/components/camel-josql/src/main/java/org/apache/camel/builder/sql/SQL.java
Thu Dec 11 18:47:51 2008
@@ -16,11 +16,11 @@
*/
package org.apache.camel.builder.sql;
+import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import java.lang.annotation.Documented;
import org.apache.camel.language.LanguageAnnotation;
Modified:
activemq/camel/trunk/components/camel-jpa/src/main/java/org/apache/camel/component/jpa/Consumed.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-jpa/src/main/java/org/apache/camel/component/jpa/Consumed.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-jpa/src/main/java/org/apache/camel/component/jpa/Consumed.java
(original)
+++
activemq/camel/trunk/components/camel-jpa/src/main/java/org/apache/camel/component/jpa/Consumed.java
Thu Dec 11 18:47:51 2008
@@ -16,11 +16,11 @@
*/
package org.apache.camel.component.jpa;
+import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import java.lang.annotation.Documented;
/**
* An annotation to mark a method to be invoked when an entity bean has been
succesfully processed
Modified:
activemq/camel/trunk/components/camel-juel/src/main/java/org/apache/camel/language/juel/EL.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-juel/src/main/java/org/apache/camel/language/juel/EL.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-juel/src/main/java/org/apache/camel/language/juel/EL.java
(original)
+++
activemq/camel/trunk/components/camel-juel/src/main/java/org/apache/camel/language/juel/EL.java
Thu Dec 11 18:47:51 2008
@@ -16,11 +16,11 @@
*/
package org.apache.camel.language.juel;
+import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import java.lang.annotation.Documented;
import org.apache.camel.language.LanguageAnnotation;
Modified:
activemq/camel/trunk/components/camel-jxpath/src/main/java/org/apache/camel/language/jxpath/JXPath.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-jxpath/src/main/java/org/apache/camel/language/jxpath/JXPath.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-jxpath/src/main/java/org/apache/camel/language/jxpath/JXPath.java
(original)
+++
activemq/camel/trunk/components/camel-jxpath/src/main/java/org/apache/camel/language/jxpath/JXPath.java
Thu Dec 11 18:47:51 2008
@@ -16,11 +16,11 @@
*/
package org.apache.camel.language.jxpath;
+import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import java.lang.annotation.Documented;
import org.apache.camel.language.LanguageAnnotation;
Modified:
activemq/camel/trunk/components/camel-ognl/src/main/java/org/apache/camel/language/ognl/OGNL.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-ognl/src/main/java/org/apache/camel/language/ognl/OGNL.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-ognl/src/main/java/org/apache/camel/language/ognl/OGNL.java
(original)
+++
activemq/camel/trunk/components/camel-ognl/src/main/java/org/apache/camel/language/ognl/OGNL.java
Thu Dec 11 18:47:51 2008
@@ -16,11 +16,11 @@
*/
package org.apache.camel.language.ognl;
+import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import java.lang.annotation.Documented;
import org.apache.camel.language.LanguageAnnotation;
Modified:
activemq/camel/trunk/components/camel-ruby/src/main/java/org/apache/camel/ruby/RubyCamel.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-ruby/src/main/java/org/apache/camel/ruby/RubyCamel.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-ruby/src/main/java/org/apache/camel/ruby/RubyCamel.java
(original)
+++
activemq/camel/trunk/components/camel-ruby/src/main/java/org/apache/camel/ruby/RubyCamel.java
Thu Dec 11 18:47:51 2008
@@ -1,5 +1,4 @@
/**
- *
* 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.
@@ -7,7 +6,7 @@
* (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
+ * 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,
@@ -17,8 +16,8 @@
*/
package org.apache.camel.ruby;
-import java.util.List;
import java.util.ArrayList;
+import java.util.List;
import org.apache.camel.CamelContext;
import org.apache.camel.builder.RouteBuilder;
@@ -27,10 +26,14 @@
/**
* @version $Revision$
*/
-public class RubyCamel {
+public final class RubyCamel {
+
private static CamelContext camelContext;
private static List<RouteBuilder> routes = new ArrayList<RouteBuilder>();
+ private RubyCamel() {
+ // helper class
+ }
public static List<RouteBuilder> getRoutes() {
return routes;
}
Modified:
activemq/camel/trunk/components/camel-ruby/src/main/java/org/apache/camel/ruby/ScriptRouteBuilder.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-ruby/src/main/java/org/apache/camel/ruby/ScriptRouteBuilder.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-ruby/src/main/java/org/apache/camel/ruby/ScriptRouteBuilder.java
(original)
+++
activemq/camel/trunk/components/camel-ruby/src/main/java/org/apache/camel/ruby/ScriptRouteBuilder.java
Thu Dec 11 18:47:51 2008
@@ -1,5 +1,4 @@
/**
- *
* 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.
@@ -7,7 +6,7 @@
* (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
+ * 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,
@@ -17,8 +16,8 @@
*/
package org.apache.camel.ruby;
-import org.apache.camel.Endpoint;
import org.apache.camel.CamelContext;
+import org.apache.camel.Endpoint;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.model.ProcessorType;
import org.apache.camel.model.RouteType;
Modified:
activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RouteUsingNestedScopesTest.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RouteUsingNestedScopesTest.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RouteUsingNestedScopesTest.java
(original)
+++
activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RouteUsingNestedScopesTest.java
Thu Dec 11 18:47:51 2008
@@ -1,5 +1,4 @@
/**
- *
* 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.
@@ -7,7 +6,7 @@
* (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
+ * 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,
Modified:
activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RubyTest.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RubyTest.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RubyTest.java
(original)
+++
activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RubyTest.java
Thu Dec 11 18:47:51 2008
@@ -1,5 +1,4 @@
/**
- *
* 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.
@@ -7,7 +6,7 @@
* (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
+ * 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,
@@ -21,8 +20,8 @@
import org.apache.camel.CamelContext;
import org.apache.camel.ContextTestSupport;
-import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
import org.jruby.Main;
/**
Modified:
activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RunScript.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RunScript.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RunScript.java
(original)
+++
activemq/camel/trunk/components/camel-ruby/src/test/java/org/apache/camel/ruby/RunScript.java
Thu Dec 11 18:47:51 2008
@@ -1,5 +1,4 @@
/**
- *
* 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.
@@ -7,7 +6,7 @@
* (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
+ * 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,
@@ -23,14 +22,16 @@
/**
* @version $Revision$
*/
-public class RunScript {
+public final class RunScript {
+ private RunScript() {
+ // helper class
+ }
public static void main(String[] args) {
if (args.length == 0) {
runScript("src/test/java/org/apache/camel/ruby/example.rb");
- }
- else {
+ } else {
for (String arg : args) {
- runScript(arg);
+ runScript(arg);
}
}
}
Modified:
activemq/camel/trunk/components/camel-saxon/src/main/java/org/apache/camel/component/xquery/XQuery.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-saxon/src/main/java/org/apache/camel/component/xquery/XQuery.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-saxon/src/main/java/org/apache/camel/component/xquery/XQuery.java
(original)
+++
activemq/camel/trunk/components/camel-saxon/src/main/java/org/apache/camel/component/xquery/XQuery.java
Thu Dec 11 18:47:51 2008
@@ -16,11 +16,11 @@
*/
package org.apache.camel.component.xquery;
+import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import java.lang.annotation.Documented;
import org.apache.camel.language.LanguageAnnotation;
import org.apache.camel.language.NamespacePrefix;
Modified:
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Groovy.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Groovy.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Groovy.java
(original)
+++
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Groovy.java
Thu Dec 11 18:47:51 2008
@@ -16,11 +16,11 @@
*/
package org.apache.camel.builder.script;
+import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import java.lang.annotation.Documented;
import org.apache.camel.language.LanguageAnnotation;
Modified:
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/JavaScript.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/JavaScript.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/JavaScript.java
(original)
+++
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/JavaScript.java
Thu Dec 11 18:47:51 2008
@@ -16,11 +16,11 @@
*/
package org.apache.camel.builder.script;
+import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import java.lang.annotation.Documented;
import org.apache.camel.language.LanguageAnnotation;
Modified:
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/PHP.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/PHP.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/PHP.java
(original)
+++
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/PHP.java
Thu Dec 11 18:47:51 2008
@@ -16,11 +16,11 @@
*/
package org.apache.camel.builder.script;
+import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import java.lang.annotation.Documented;
import org.apache.camel.language.LanguageAnnotation;
Modified:
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Python.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Python.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Python.java
(original)
+++
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Python.java
Thu Dec 11 18:47:51 2008
@@ -16,11 +16,11 @@
*/
package org.apache.camel.builder.script;
+import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import java.lang.annotation.Documented;
import org.apache.camel.language.LanguageAnnotation;
Modified:
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Ruby.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Ruby.java?rev=725893&r1=725892&r2=725893&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Ruby.java
(original)
+++
activemq/camel/trunk/components/camel-script/src/main/java/org/apache/camel/builder/script/Ruby.java
Thu Dec 11 18:47:51 2008
@@ -16,11 +16,11 @@
*/
package org.apache.camel.builder.script;
+import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import java.lang.annotation.Documented;
import org.apache.camel.language.LanguageAnnotation;