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:31:09 UTC

svn commit: r641555 - /incubator/tuscany/java/sca/modules/implementation-java/src/main/java/org/apache/tuscany/sca/implementation/java/JavaImplementation.java

Author: mcombellack
Date: Wed Mar 26 13:31:08 2008
New Revision: 641555

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

Modified:
    incubator/tuscany/java/sca/modules/implementation-java/src/main/java/org/apache/tuscany/sca/implementation/java/JavaImplementation.java

Modified: incubator/tuscany/java/sca/modules/implementation-java/src/main/java/org/apache/tuscany/sca/implementation/java/JavaImplementation.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-java/src/main/java/org/apache/tuscany/sca/implementation/java/JavaImplementation.java?rev=641555&r1=641554&r2=641555&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/implementation-java/src/main/java/org/apache/tuscany/sca/implementation/java/JavaImplementation.java (original)
+++ incubator/tuscany/java/sca/modules/implementation-java/src/main/java/org/apache/tuscany/sca/implementation/java/JavaImplementation.java Wed Mar 26 13:31:08 2008
@@ -43,155 +43,155 @@
      *
      * @return the constructor used to instantiate implementation instances
      */
-    public JavaConstructorImpl<?> getConstructor();
+    JavaConstructorImpl<?> getConstructor();
 
     /**
      * Sets the constructor used to instantiate implementation instances
      *
      * @param definition the constructor used to instantiate implementation instances
      */
-    public void setConstructor(JavaConstructorImpl<?> definition);
+    void setConstructor(JavaConstructorImpl<?> definition);
 
     /**
      * Returns the component initializer method.
      *
      * @return the component initializer method
      */
-    public Method getInitMethod();
+    Method getInitMethod();
 
     /**
      * Sets the component initializer method.
      *
      * @param initMethod the component initializer method
      */
-    public void setInitMethod(Method initMethod);
+    void setInitMethod(Method initMethod);
 
     /**
      * Returns the component destructor method.
      *
      * @return the component destructor method
      */
-    public Method getDestroyMethod();
+    Method getDestroyMethod();
 
     /**
      * Sets the component destructor method.
      *
      * @param destroyMethod the component destructor method
      */
-    public void setDestroyMethod(Method destroyMethod);
+    void setDestroyMethod(Method destroyMethod);
 
     /**
      * Returns the resources injected into this implementation.
-     * 
+     *
      * @return
      */
-    public Map<String, JavaResourceImpl> getResources();
+    Map<String, JavaResourceImpl> getResources();
 
     /**
      * Returns the Java member used to inject a conversation ID.
-     * 
+     *
      * @return
      */
-    public List<Member> getConversationIDMembers();
+    List<Member> getConversationIDMembers();
 
     /**
      * Sets the Java member used to inject a conversation ID.
-     * 
+     *
      * @param conversationIDMember
      */
-    public void addConversationIDMember(Member conversationIDMember);
+    void addConversationIDMember(Member conversationIDMember);
 
     /**
      * Returns true if AllowsPassReference is set.
-     *  
+     *
      * @return true if AllowsPassByReference is set
      */
-    public boolean isAllowsPassByReference();
+    boolean isAllowsPassByReference();
 
     /**
      * @param allowsPassByReference the allowsPassByReference to set
      */
-    public void setAllowsPassByReference(boolean allowsPassByReference);
+    void setAllowsPassByReference(boolean allowsPassByReference);
 
     /**
      * @return the allowsPassByReferenceMethods
      */
-    public List<Method> getAllowsPassByReferenceMethods();
-    
+    List<Method> getAllowsPassByReferenceMethods();
+
     /**
      * @param method
      * @return
      */
-    public boolean isAllowsPassByReference(Method method);
+    boolean isAllowsPassByReference(Method method);
 
     /**
      * @return the constructors
      */
-    public Map<Constructor, JavaConstructorImpl> getConstructors();
+    Map<Constructor, JavaConstructorImpl> getConstructors();
 
     /**
      * @return the eagerInit
      */
-    public boolean isEagerInit();
+    boolean isEagerInit();
 
     /**
      * @param eagerInit the eagerInit to set
      */
-    public void setEagerInit(boolean eagerInit);
+    void setEagerInit(boolean eagerInit);
 
     /**
      * @return the callbacks
      */
-    public Map<String, JavaElementImpl> getCallbackMembers();
+    Map<String, JavaElementImpl> getCallbackMembers();
 
     /**
      * @return the properties
      */
-    public Map<String, JavaElementImpl> getPropertyMembers();
+    Map<String, JavaElementImpl> getPropertyMembers();
 
     /**
      * @return the references
      */
-    public Map<String, JavaElementImpl> getReferenceMembers();
+    Map<String, JavaElementImpl> getReferenceMembers();
 
     /**
      * @return the scope
      */
-    public JavaScopeImpl getJavaScope();
+    JavaScopeImpl getJavaScope();
 
     /**
      * @param scope the scope to set
      */
-    public void setJavaScope(JavaScopeImpl scope);
+    void setJavaScope(JavaScopeImpl scope);
 
     /**
      * @return the maxAge
      */
-    public long getMaxAge();
+    long getMaxAge();
 
     /**
      * @param maxAge the maxAge to set
      */
-    public void setMaxAge(long maxAge);
+    void setMaxAge(long maxAge);
 
     /**
      * @return the maxIdleTime
      */
-    public long getMaxIdleTime();
+    long getMaxIdleTime();
 
     /**
      * @param maxIdleTime the maxIdleTime to set
      */
-    public void setMaxIdleTime(long maxIdleTime);
-    
+    void setMaxIdleTime(long maxIdleTime);
+
     /**
      * @return the map of a policy handler classnames
      */
-    public Map<ClassLoader, List<PolicyHandlerTuple>> getPolicyHandlerClassNames();
-    
+    Map<ClassLoader, List<PolicyHandlerTuple>> getPolicyHandlerClassNames();
+
     /**
      * @param map of policyhandler classnames
      */
-    public void setPolicyHandlerClassNames(Map<ClassLoader, List<PolicyHandlerTuple>> policyHandlerClassNames);
-        
+    void setPolicyHandlerClassNames(Map<ClassLoader, List<PolicyHandlerTuple>> policyHandlerClassNames);
+
 }



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