Author: jstrachan
Date: Mon Aug 11 12:36:36 2008
New Revision: 684887

URL: http://svn.apache.org/viewvc?rev=684887&view=rev
Log:
tidied up the formatting of the javadoc for CAMEL-810

Modified:
    activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/OneWay.java

Modified: 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/OneWay.java
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/OneWay.java?rev=684887&r1=684886&r2=684887&view=diff
==============================================================================
--- activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/OneWay.java 
(original)
+++ activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/OneWay.java 
Mon Aug 11 12:36:36 2008
@@ -24,51 +24,39 @@
 /**
  * Marks a method as being a one way asynchronous invocation so that if you 
are using some kind of
  * <a href="http://activemq.apache.org/camel/spring-remoting.html";>Spring 
Remoting</a> then the method invocation will be asynchronous.
+ * <p>
+ * You can then either annotate specific methods as being oneway as follows
  *
- * You can then either annotate specific methods as being oneway / 
asynchronous via
- * <code>
- * @OneWay
- * public void myMethod() {...}
- * </code>
+ * <code><pre> &#64;OneWay
+ * public void myMethod() {...}</pre></code>
  *
  * or you can say that all methods are by default asynchronous on an interface 
by annotating the interface
- * 
- * <code>
- * @OneWay
+ *
+ * <code><pre> &#64;OneWay
  * public interface Foo {
  *   void methodOne();
  *   void methodTwo();
- * }
- * </code>
+ * }</pre></code>
  *
  * If you wish to use some other [EMAIL PROTECTED] ExchangePattern} than 
[EMAIL PROTECTED] org.apache.camel.ExchangePattern#InOnly} you could use 
something like
  *
- * <code>
- * @OneWay(ExchangePattern.RobustInOnly)
- * public void myMethod() {...}
- * </code>
- *
+ * <code><pre> &#64;OneWay(ExchangePattern.RobustInOnly)
+ * public void myMethod() {...}</pre></code>
  * otherwise the following code would default to using [EMAIL PROTECTED] 
org.apache.camel.ExchangePattern#InOnly}
+ * <code><pre> &#64;OneWay
+ * public void myMethod() {...}</pre></code>
  *
- * <code>
- * @OneWay
- * public void myMethod() {...}
- * </code>
- *
- * You can also use the annotation to disable the one way pattern on specific 
methods as follows...
- *
- * <code>
- * @OneWay
+ * <p>
+ * You can also use the annotation on a method to override the annoation on 
the class as follows...
+ * <code><pre> &#64;OneWay
  * public interface Foo {
  *   void methodOne();
  *
- *   @OneWay(ExchangePattern.InOut)
+ *   &#64;OneWay(ExchangePattern.InOut)
  *   void notOneWayMethod();
- * }
+ * }</pre></code>
  *
  * Where the <b>notOneWayMethod</b> will not be using one way invocation while 
all other methods will inherit the InOut exchange pattern
- *
- * </code>
  * @see ExchangePattern
  * @see Exchange#getPattern()
  *


Reply via email to