OW2 Consortium
Search OW2 Mail Archive: 

Advanced Search - Powered by Google


Mail Archive Home | fractal-commits List | October 2006 Index

<--  Date Index  --> <--  Thread Index  -->

CVS update of julia (5 files)


    Date: Monday, October 30, 2006 @ 14:34:54
  Author: seintur
    Path: /cvsroot/fractal/julia

Modified: build.xml jdoc/julia.xml
          src/org/objectweb/fractal/juliak/BootstrapComponentImpl.java
          src/org/objectweb/fractal/juliak/FractalHelper.java
          src/org/objectweb/fractal/juliak/Juliak.java

Javadoc fixes.
Javadoc generation process fixed.


--------------------------------------------------------------+
 build.xml                                                    |    2 -
 jdoc/julia.xml                                               |   13 
+++-------
 src/org/objectweb/fractal/juliak/BootstrapComponentImpl.java |    2 -
 src/org/objectweb/fractal/juliak/FractalHelper.java          |    4 +--
 src/org/objectweb/fractal/juliak/Juliak.java                 |    2 -
 5 files changed, 9 insertions(+), 14 deletions(-)


Index: julia/build.xml
diff -u julia/build.xml:1.11 julia/build.xml:1.12
--- julia/build.xml:1.11        Tue Oct 24 12:56:18 2006
+++ julia/build.xml     Mon Oct 30 14:34:54 2006
@@ -217,7 +217,7 @@
     <multipleAnt dir="${archive}"/>
   </target>
 
-  <target name="jdoc" depends="init,dist.init" description="Generates the 
Javadoc">
+  <target name="jdoc" depends="dist.init,compile" description="Generates the 
Javadoc">
     <copy todir="${out.dist.doc}"
           preservelastmodified="yes"
           includeEmptyDirs="false">
Index: julia/jdoc/julia.xml
diff -u julia/jdoc/julia.xml:1.1 julia/jdoc/julia.xml:1.2
--- julia/jdoc/julia.xml:1.1    Thu Jan 29 10:35:25 2004
+++ julia/jdoc/julia.xml        Mon Oct 30 14:34:54 2006
@@ -7,6 +7,7 @@
     <pathelement path="${classpath}"/>
     <fileset dir="${basedir}">
       <include name="externals/**/*.jar"/>
+      <include name="config/**/*.jar"/>
     </fileset>
   </path>
 
@@ -22,7 +23,9 @@
 
   <target name="dist.jdoc.julia" unless="jdoc.required">
     <mkdir dir="${jdoc.dir}"/>
-    <javadoc destdir="${jdoc.dir}"
+    <javadoc packagenames="org.objectweb.fractal.*"
+             excludepackagenames="org.objectweb.fractal.julia.ant"   
+             destdir="${jdoc.dir}"
              windowtitle="Julia Documentation"
              doctitle="Julia Documentation"
              overview="${src}/org/objectweb/fractal/julia/overview.html">
@@ -30,14 +33,6 @@
       <sourcepath path="${src}"/>
       <classpath refid="classpath"/>
 
-      <package name="org.objectweb.fractal.julia"/>
-      <package name="org.objectweb.fractal.julia.asm"/>
-      <package name="org.objectweb.fractal.julia.control.*"/>
-      <package name="org.objectweb.fractal.julia.factory"/>
-      <package name="org.objectweb.fractal.julia.loader"/>
-      <package name="org.objectweb.fractal.julia.logger"/>
-      <package name="org.objectweb.fractal.julia.type"/>
-
       <link href="${monolog.url}" offline="true" 
packagelistLoc="${jdoc}/monolog-list"/>
       <link href="${fractal.url}" offline="true" 
packagelistLoc="${jdoc}/fractal-list"/>
       <link href="${asm.url}" offline="true" 
packagelistLoc="${jdoc}/asm-list"/>
Index: julia/src/org/objectweb/fractal/juliak/BootstrapComponentImpl.java
diff -u 
julia/src/org/objectweb/fractal/juliak/BootstrapComponentImpl.java:1.1 
julia/src/org/objectweb/fractal/juliak/BootstrapComponentImpl.java:1.2
--- julia/src/org/objectweb/fractal/juliak/BootstrapComponentImpl.java:1.1    
  Tue Oct 24 12:56:20 2006
+++ julia/src/org/objectweb/fractal/juliak/BootstrapComponentImpl.java  Mon 
Oct 30 14:34:53 2006
@@ -38,7 +38,7 @@
  * Bootstrap component providing two Fractal interfaces:
  * <ul>
  * <li> type-factory which implements {@link TypeFactory} </li>
- * <li> generic-factory which implements {@link GenericFactoryExt} </li>
+ * <li> generic-factory which implements {@link GenericFactory} </li>
  * </ul>
  * 
  * @author Lionel Seinturier <Lionel.Seinturier@xxxxxxx>
Index: julia/src/org/objectweb/fractal/juliak/FractalHelper.java
diff -u julia/src/org/objectweb/fractal/juliak/FractalHelper.java:1.1 
julia/src/org/objectweb/fractal/juliak/FractalHelper.java:1.2
--- julia/src/org/objectweb/fractal/juliak/FractalHelper.java:1.1       Tue 
Oct 24 12:56:20 2006
+++ julia/src/org/objectweb/fractal/juliak/FractalHelper.java   Mon Oct 30 
14:34:53 2006
@@ -135,10 +135,10 @@
     }
 
     /**
-     * Returns the {@link GenericFactoryExt} interface of the given 
component.
+     * Returns the {@link GenericFactory} interface of the given component.
      * 
      * @param c a component.
-     * @return the {@link GenericFactoryExt} interface of the given 
component.
+     * @return the {@link GenericFactory} interface of the given component.
      */
     public static GenericFactory getGenericFactory(Component c) {
         return (GenericFactory) getFcInterface(c,"generic-factory");
Index: julia/src/org/objectweb/fractal/juliak/Juliak.java
diff -u julia/src/org/objectweb/fractal/juliak/Juliak.java:1.1 
julia/src/org/objectweb/fractal/juliak/Juliak.java:1.2
--- julia/src/org/objectweb/fractal/juliak/Juliak.java:1.1      Tue Oct 24 
12:56:20 2006
+++ julia/src/org/objectweb/fractal/juliak/Juliak.java  Mon Oct 30 14:34:53 
2006
@@ -100,7 +100,7 @@
      * The bootstrap component provides the following interfaces:
      * <ul>
      * <li> {@link TypeFactory} </li>
-     * <li> {@link GenericFactoryExt} </li>
+     * <li> {@link GenericFactory} </li>
      * </ul>
      */
     public Component newFcInstance() throws InstantiationException {



<--  Date Index  --> <--  Thread Index  -->

Reply via email to:

Powered by MHonArc.

Copyright © 2006-2007, OW2 Consortium | contact | webmaster.