[jboss-cvs] JBossAS SVN: r68983 - in trunk: server and 3 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jan 15 10:10:50 EST 2008


Author: csaldanh
Date: 2008-01-15 10:10:49 -0500 (Tue, 15 Jan 2008)
New Revision: 68983

Modified:
   trunk/build/build-distr.xml
   trunk/build/build-thirdparty.xml
   trunk/server/build.xml
   trunk/server/src/main/org/jboss/verifier/event/VerificationEventGenerator.java
   trunk/server/src/main/org/jboss/verifier/event/VerificationEventGeneratorSupport.java
   trunk/server/src/main/org/jboss/verifier/factory/VerificationEventFactory.java
   trunk/server/src/main/org/jboss/verifier/strategy/AbstractVerifier.java
   trunk/server/src/main/org/jboss/verifier/strategy/VerificationContext.java
   trunk/server/src/main/org/jboss/verifier/strategy/VerificationStrategy.java
Log:
Getting rid of gjt packages


Modified: trunk/build/build-distr.xml
===================================================================
--- trunk/build/build-distr.xml	2008-01-15 15:09:26 UTC (rev 68982)
+++ trunk/build/build-distr.xml	2008-01-15 15:10:49 UTC (rev 68983)
@@ -515,9 +515,6 @@
       </fileset>
     </copy>
     <copy todir="${install.all.lib}" filtering="no">
-      <fileset dir="${gjt.jpl-util.lib}">
-        <include name="*.jar"/>
-      </fileset>
       <fileset dir="${apache.bcel.lib}">
         <include name="bcel.jar"/>
       </fileset>

Modified: trunk/build/build-thirdparty.xml
===================================================================
--- trunk/build/build-thirdparty.xml	2008-01-15 15:09:26 UTC (rev 68982)
+++ trunk/build/build-thirdparty.xml	2008-01-15 15:10:49 UTC (rev 68983)
@@ -72,7 +72,6 @@
     <componentref name="commons-el" version="1.0"/>
     <componentref name="dom4j" version="1.6.1-brew"/>
     <componentref name="easymock" version="1.1"/>
-    <componentref name="gjt-jpl-util" version="1.0"/>
     <componentref name="gnu-getopt" version="1.0.12-brew"/>
     <componentref name="hibernate" version="3.2.4.SP1_CP01-brew"/>
     <componentref name="hibernate-annotations" version="3.3.1.Beta1"/>

Modified: trunk/server/build.xml
===================================================================
--- trunk/server/build.xml	2008-01-15 15:09:26 UTC (rev 68982)
+++ trunk/server/build.xml	2008-01-15 15:10:49 UTC (rev 68983)
@@ -79,7 +79,6 @@
       <path refid="apache.log4j.classpath"/>
       <path refid="apache.xerces.classpath"/>
       <path refid="dom4j.dom4j.classpath"/>
-      <path refid="gjt.jpl-util.classpath"/>
       <path refid="gnu.getopt.classpath"/>
       <path refid="ibm.wsdl4j.classpath"/>
       <path refid="jboss.remoting.classpath"/>

Modified: trunk/server/src/main/org/jboss/verifier/event/VerificationEventGenerator.java
===================================================================
--- trunk/server/src/main/org/jboss/verifier/event/VerificationEventGenerator.java	2008-01-15 15:09:26 UTC (rev 68982)
+++ trunk/server/src/main/org/jboss/verifier/event/VerificationEventGenerator.java	2008-01-15 15:10:49 UTC (rev 68983)
@@ -47,8 +47,6 @@
 
 
 
-// non-standard class dependencies
-import org.gjt.lindfors.util.EventGenerator;
 
 
 /**
@@ -63,7 +61,7 @@
  * @version $Revision$
  * @since  	JDK 1.3
  */
-public interface VerificationEventGenerator extends EventGenerator {
+public interface VerificationEventGenerator {
 
     abstract void addVerificationListener(VerificationListener listener);
     abstract void removeVerificationListener(VerificationListener listener);

Modified: trunk/server/src/main/org/jboss/verifier/event/VerificationEventGeneratorSupport.java
===================================================================
--- trunk/server/src/main/org/jboss/verifier/event/VerificationEventGeneratorSupport.java	2008-01-15 15:09:26 UTC (rev 68982)
+++ trunk/server/src/main/org/jboss/verifier/event/VerificationEventGeneratorSupport.java	2008-01-15 15:10:49 UTC (rev 68983)
@@ -51,7 +51,13 @@
 
 
 // non-standard class dependencies
-import org.gjt.lindfors.util.EventGeneratorSupport;
+import org.jboss.verifier.event.EventGeneratorSupport;
+/*
+ * import org.gjt.lindfors.util.EventGeneratorSupport; to org.jboss.verifier.event.EventGeneratorSupport;
+ * Trying to replace gjt-util, hence adding EventGeneratorSupport.java to this package
+ * which is taken from Juha Lindfors implementation found at the following reference:
+ * Refer org.gjt.lindfors.util.EventGeneratorSupport at www.gjt.org  
+ */
 import org.jboss.verifier.strategy.VerificationContext;
 
 

Modified: trunk/server/src/main/org/jboss/verifier/factory/VerificationEventFactory.java
===================================================================
--- trunk/server/src/main/org/jboss/verifier/factory/VerificationEventFactory.java	2008-01-15 15:09:26 UTC (rev 68982)
+++ trunk/server/src/main/org/jboss/verifier/factory/VerificationEventFactory.java	2008-01-15 15:10:49 UTC (rev 68983)
@@ -47,7 +47,6 @@
 
 
 // non-standard class dependencies
-import org.gjt.lindfors.pattern.AbstractFactory;
 
 import org.jboss.verifier.Section;
 import org.jboss.verifier.event.VerificationEventGenerator;
@@ -66,7 +65,7 @@
  * @version $Revision$
  * @since  	JDK 1.3
  */
-public interface VerificationEventFactory extends AbstractFactory {
+public interface VerificationEventFactory {
 
     VerificationEvent createSpecViolationEvent(
                     VerificationEventGenerator source,

Modified: trunk/server/src/main/org/jboss/verifier/strategy/AbstractVerifier.java
===================================================================
--- trunk/server/src/main/org/jboss/verifier/strategy/AbstractVerifier.java	2008-01-15 15:09:26 UTC (rev 68982)
+++ trunk/server/src/main/org/jboss/verifier/strategy/AbstractVerifier.java	2008-01-15 15:10:49 UTC (rev 68983)
@@ -23,7 +23,6 @@
 
 // standard imports
 
-import org.gjt.lindfors.pattern.StrategyContext;
 import org.jboss.logging.Logger;
 import org.jboss.metadata.BeanMetaData;
 import org.jboss.metadata.EntityMetaData;
@@ -1165,7 +1164,7 @@
     *
     * @return  the client object using this algorithm implementation
     */
-   public StrategyContext getContext()
+   public VerificationContext getContext()
    {
       return context;
    }

Modified: trunk/server/src/main/org/jboss/verifier/strategy/VerificationContext.java
===================================================================
--- trunk/server/src/main/org/jboss/verifier/strategy/VerificationContext.java	2008-01-15 15:09:26 UTC (rev 68982)
+++ trunk/server/src/main/org/jboss/verifier/strategy/VerificationContext.java	2008-01-15 15:10:49 UTC (rev 68983)
@@ -49,7 +49,6 @@
 import java.net.URL;
 
 // non-standard class dependencies
-import org.gjt.lindfors.pattern.StrategyContext;
 
 import org.jboss.verifier.event.VerificationEventGenerator;
 
@@ -68,7 +67,7 @@
  * @since   JDK 1.3
  */
 public interface VerificationContext
-   extends StrategyContext, VerificationEventGenerator
+   extends VerificationEventGenerator
 {
 
    /*

Modified: trunk/server/src/main/org/jboss/verifier/strategy/VerificationStrategy.java
===================================================================
--- trunk/server/src/main/org/jboss/verifier/strategy/VerificationStrategy.java	2008-01-15 15:09:26 UTC (rev 68982)
+++ trunk/server/src/main/org/jboss/verifier/strategy/VerificationStrategy.java	2008-01-15 15:10:49 UTC (rev 68983)
@@ -48,7 +48,6 @@
 import java.util.Iterator;
 
 // non-standard class dependencies
-import org.gjt.lindfors.pattern.Strategy;
 
 import org.jboss.metadata.EntityMetaData;
 import org.jboss.metadata.MessageDrivenMetaData;
@@ -60,7 +59,6 @@
  * @since   JDK 1.3
  */
 public interface VerificationStrategy
-   extends Strategy
 {
    /**
     * Does the entity check




More information about the jboss-cvs-commits mailing list