Author: dkulp
Date: Fri Apr  1 22:42:05 2011
New Revision: 1087925

URL: http://svn.apache.org/viewvc?rev=1087925&view=rev
Log:
Merged revisions 1087907 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1087907 | dkulp | 2011-04-01 17:28:56 -0400 (Fri, 01 Apr 2011) | 1 line
  
  [CXF-3436] Minor javadoc patch from Jacek Laskowski applied
........

Modified:
    cxf/branches/2.3.x-fixes/   (props changed)
    
cxf/branches/2.3.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsServerFactoryBean.java

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: 
cxf/branches/2.3.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsServerFactoryBean.java
URL: 
http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsServerFactoryBean.java?rev=1087925&r1=1087924&r2=1087925&view=diff
==============================================================================
--- 
cxf/branches/2.3.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsServerFactoryBean.java
 (original)
+++ 
cxf/branches/2.3.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsServerFactoryBean.java
 Fri Apr  1 22:42:05 2011
@@ -49,14 +49,14 @@ import org.apache.cxf.service.model.Bind
 import org.apache.cxf.service.model.BindingOperationInfo;
 
 /**
- * Bean to help easily create Server endpoints for JAX-WS. Example:
+ * Bean to help easily create Server endpoints for JAX-WS.
  * <pre>
- * JaxWsServerFactoryBean sf = JaxWsServerFactoryBean();
+ * JaxWsServerFactoryBean sf = new JaxWsServerFactoryBean();
  * sf.setServiceClass(MyService.class);
  * sf.setAddress("http://acme.com/myService";);
  * sf.create();
  * </pre>
- * This will start a server for you and register it with the ServerManager. 
+ * This will start a server and register it with the ServerManager. 
  */
 public class JaxWsServerFactoryBean extends ServerFactoryBean {
     protected boolean doInit;


Reply via email to