Author: mes
Date: 2011-07-07 15:47:40 -0700 (Thu, 07 Jul 2011)
New Revision: 26109

Modified:
   core3/work-spring-api/trunk/pom.xml
   
core3/work-spring-api/trunk/src/main/java/org/cytoscape/work/spring/SpringTunableInterceptor.java
Log:
made TunableHandlerFactories services

Modified: core3/work-spring-api/trunk/pom.xml
===================================================================
--- core3/work-spring-api/trunk/pom.xml 2011-07-07 22:47:19 UTC (rev 26108)
+++ core3/work-spring-api/trunk/pom.xml 2011-07-07 22:47:40 UTC (rev 26109)
@@ -4,7 +4,7 @@
        <parent>
                <artifactId>parent</artifactId>
                <groupId>org.cytoscape</groupId>
-               <version>3.0.0-alpha7</version>
+               <version>3.0.0-alpha8-SNAPSHOT</version>
                <relativePath>../parent</relativePath>
        </parent>
 
@@ -56,47 +56,23 @@
        </repositories>
 
        <build>
-               <resources>
-                       <resource>
-                               <directory>src/main/resources</directory>
-                       </resource>
-                       <!-- | example additional resource entries, useful when 
building Eclipse 
-                               RCP applications -->
-                       <resource>
-                               <directory>.</directory>
-                               <includes>
-                                       <include>plugin.xml</include>
-                                       <include>plugin.properties</include>
-                                       <include>icons/**</include>
-                               </includes>
-                       </resource>
-               </resources>
                <plugins>
                        <plugin>
                                <groupId>org.ops4j</groupId>
                                <artifactId>maven-pax-plugin</artifactId>
                                <version>${maven-pax-plugin.version}</version>
-                               <!-- | enable improved OSGi compilation support 
for the bundle life-cycle. 
-                                       | to switch back to the standard bundle 
life-cycle, move this setting | down 
-                                       to the maven-bundle-plugin section -->
                                <extensions>true</extensions>
                        </plugin>
                        <plugin>
                                <groupId>org.apache.felix</groupId>
                                <artifactId>maven-bundle-plugin</artifactId>
                                
<version>${maven-bundle-plugin.version}</version>
-                               <!-- | the following instructions build a 
simple set of public/private 
-                                       classes into an OSGi bundle -->
                                <configuration>
                                        <instructions>
                                                
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
                                                
<Bundle-Version>${project.version}</Bundle-Version>
-                                               <!-- | assume public classes 
are in the top package, and private classes 
-                                                       are under ".internal" 
-->
                                                
<Export-Package>!${bundle.namespace}.internal.*,${bundle.namespace}.*;version="${project.version}"</Export-Package>
                                                
<Private-Package>${bundle.namespace}.internal.*</Private-Package>
-                                               <!-- | each module can override 
these defaults in their osgi.bnd file -->
-                                               <_include>-osgi.bnd</_include>
                                        </instructions>
                                </configuration>
                        </plugin>
@@ -107,7 +83,7 @@
                <dependency>
                        <groupId>org.cytoscape</groupId>
                        <artifactId>work-api</artifactId>
-                       <version>3.0.0-alpha3</version>
+                       <version>3.0.0-alpha4-SNAPSHOT</version>
                        <scope>provided</scope>
                </dependency>
                <dependency>

Modified: 
core3/work-spring-api/trunk/src/main/java/org/cytoscape/work/spring/SpringTunableInterceptor.java
===================================================================
--- 
core3/work-spring-api/trunk/src/main/java/org/cytoscape/work/spring/SpringTunableInterceptor.java
   2011-07-07 22:47:19 UTC (rev 26108)
+++ 
core3/work-spring-api/trunk/src/main/java/org/cytoscape/work/spring/SpringTunableInterceptor.java
   2011-07-07 22:47:40 UTC (rev 26109)
@@ -3,7 +3,6 @@
 
 import org.cytoscape.work.AbstractTunableInterceptor;
 import org.cytoscape.work.TunableHandler;
-import org.cytoscape.work.TunableHandlerFactory;
 
 import org.springframework.core.InfrastructureProxy;
 
@@ -20,11 +19,9 @@
 
        /**
         * Constructor.
-        * @param thf The TunableHandlerFactory used to create the 
TunableHandlers
-        * necessary to process Tunables.
         */
-       public SpringTunableInterceptor(TunableHandlerFactory<T> thf) {
-               super(thf);
+       public SpringTunableInterceptor() {
+               super();
        }
 
        /**

-- 
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/cytoscape-cvs?hl=en.

Reply via email to