Skip to Content.
Sympa Menu

notify-dpml - r1448 - in trunk/main: depot/tools/builder/src/main/net/dpml/tools/model planet/process

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell at BerliOS <mcconnell AT mail.berlios.de>
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: r1448 - in trunk/main: depot/tools/builder/src/main/net/dpml/tools/model planet/process
  • Date: Fri, 19 May 2006 17:33:56 +0200

Author: mcconnell
Date: 2006-05-19 17:33:55 +0200 (Fri, 19 May 2006)
New Revision: 1448

Added:
trunk/main/planet/process/build.xml
trunk/main/planet/process/info/
Modified:
trunk/main/depot/tools/builder/src/main/net/dpml/tools/model/Context.java
Log:
housekeeping


Modified:
trunk/main/depot/tools/builder/src/main/net/dpml/tools/model/Context.java
===================================================================
--- trunk/main/depot/tools/builder/src/main/net/dpml/tools/model/Context.java
2006-05-19 15:20:29 UTC (rev 1447)
+++ trunk/main/depot/tools/builder/src/main/net/dpml/tools/model/Context.java
2006-05-19 15:33:55 UTC (rev 1448)
@@ -66,31 +66,6 @@
Processor[] getProcessors();

/**
- * Return the sequence of processor definitions supporting production of
a
- * the current resource. The implementation constructs a sequence of
process
- * instances based on the types declared by the resource combined with
- * dependencies declared by respective process definitions.
- *
- * @return a sorted array of processor definitions supporting type
production
- */
- //ProcessorDirective[] getProcessorSequence();
-
- /**
- * Return the sequence of processor definitions supporting production of
a
- * supplied resource. The implementation constructs a sequence of process
- * instances based on the types declared by the resource combined with
- * dependencies declared by respective process defintions. Clients may
- * safely invoke processes sequentially relative to the returned process
- * sequence.
- *
- * @param resource the resource to be produced
- * @return a sorted array of processor definitions supporting resource
production
- * @exception ProcessorNotFoundException if a processor referenced by
another
- * processor as a dependent cannot be resolved
- */
- //Processor[] getProcessorSequence( Resource resource ) throws
ProcessorNotFoundException;
-
- /**
*Initialize the context.
*/
void init();

Added: trunk/main/planet/process/build.xml
===================================================================
--- trunk/main/planet/process/build.xml 2006-05-19 15:20:29 UTC (rev 1447)
+++ trunk/main/planet/process/build.xml 2006-05-19 15:33:55 UTC (rev 1448)
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<!--
+ Copyright 2006 Stephen J McConnell
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied.
+
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<project name="dpml-process"
+ xmlns:transit="antlib:net.dpml.transit"
+ xmlns:x="dpml:depot"
+ default="install">
+
+ <transit:import uri="local:template:dpml/tools/standard"/>
+
+ <target name="package" depends="standard.package">
+ <property name="deliverables"
location="${project.target.deliverables.dir}"/>
+ <property name="xsds" location="${deliverables}/xsds"/>
+ <mkdir dir="${xsds}"/>
+ <property name="filename"
value="${project.name}-${project.version}.xsd"/>
+ <copy toFile="${xsds}/${filename}" preservelastmodified="true"
overwrite="true"
+ file="${project.target.dir}/process.xsd"/>
+ </target>
+
+</project>




  • r1448 - in trunk/main: depot/tools/builder/src/main/net/dpml/tools/model planet/process, mcconnell at BerliOS, 05/19/2006

Archive powered by MHonArc 2.6.24.

Top of Page