You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by mc...@apache.org on 2008/03/26 21:43:39 UTC

svn commit: r641564 - /incubator/tuscany/java/sca/modules/interface-wsdl/src/main/java/org/apache/tuscany/sca/interfacedef/wsdl/WSDLInterface.java

Author: mcombellack
Date: Wed Mar 26 13:43:38 2008
New Revision: 641564

URL: http://svn.apache.org/viewvc?rev=641564&view=rev
Log:
Removed redundant modifiers from methods on interface

Modified:
    incubator/tuscany/java/sca/modules/interface-wsdl/src/main/java/org/apache/tuscany/sca/interfacedef/wsdl/WSDLInterface.java

Modified: incubator/tuscany/java/sca/modules/interface-wsdl/src/main/java/org/apache/tuscany/sca/interfacedef/wsdl/WSDLInterface.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/interface-wsdl/src/main/java/org/apache/tuscany/sca/interfacedef/wsdl/WSDLInterface.java?rev=641564&r1=641563&r2=641564&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/interface-wsdl/src/main/java/org/apache/tuscany/sca/interfacedef/wsdl/WSDLInterface.java (original)
+++ incubator/tuscany/java/sca/modules/interface-wsdl/src/main/java/org/apache/tuscany/sca/interfacedef/wsdl/WSDLInterface.java Wed Mar 26 13:43:38 2008
@@ -27,41 +27,41 @@
 
 /**
  * Represents a WSDL interface.
- * 
+ *
  * @version $Rev$ $Date$
  */
 public interface WSDLInterface extends Interface, Base {
 
     /**
      * Returns the name of the WSDL interface.
-     * 
+     *
      * @return the name of the WSDL interface
      */
     QName getName();
 
     /**
      * Sets the name of the WSDL interface.
-     * 
+     *
      * @param className the name of the WSDL interface
      */
     void setName(QName interfaceName);
-    
+
     /**
      * Returns the WSDL interface portType.
-     * 
+     *
      * @return the WSDL interface portType
      */
     PortType getPortType();
 
     /**
      * Sets the WSDL interface portType
-     * 
+     *
      * @param portType the WSDL interface portType
      */
     void setPortType(PortType portType);
 
-    public WSDLDefinition getWsdlDefinition();
+    WSDLDefinition getWsdlDefinition();
 
-    public void setWsdlDefinition(WSDLDefinition wsdlDefinition);
+    void setWsdlDefinition(WSDLDefinition wsdlDefinition);
 
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org