Author: jvanzyl
Date: Wed Sep 27 02:28:52 2006
New Revision: 450387

URL: http://svn.apache.org/viewvc?view=rev&rev=450387
Log: (empty)

Modified:
    
maven/components/branches/maven-2.1-jvz/maven-toolchain/src/main/java/org/apache/maven/Toolchain.java
    maven/components/branches/maven-2.1-jvz/maven.iws

Modified: 
maven/components/branches/maven-2.1-jvz/maven-toolchain/src/main/java/org/apache/maven/Toolchain.java
URL: 
http://svn.apache.org/viewvc/maven/components/branches/maven-2.1-jvz/maven-toolchain/src/main/java/org/apache/maven/Toolchain.java?view=diff&rev=450387&r1=450386&r2=450387
==============================================================================
--- 
maven/components/branches/maven-2.1-jvz/maven-toolchain/src/main/java/org/apache/maven/Toolchain.java
 (original)
+++ 
maven/components/branches/maven-2.1-jvz/maven-toolchain/src/main/java/org/apache/maven/Toolchain.java
 Wed Sep 27 02:28:52 2006
@@ -1,5 +1,11 @@
 package org.apache.maven;
 
+//languages like java, .net, ruby, c++                                         
                       
+//device specific like j2me where there are profiles for different devices
+//groups where you have 1.4, 1.5
+//versions where you have things like 1.4_003 and 1.5_006
+//app servers possibly
+
 /**
  * @author Milos Kleint
  * @author Jason van Zyl
@@ -12,12 +18,22 @@
 
     String getVendor();
 
-    String getSpecification();
+    String getSpecificationVersion();
+
+    String getVersion();
 
     Map getProperties();
 
     Map getSystemProperties();
 
+    /**
+     * Gets the platform tool executable.
+     *
+     * @param toolName the tool platform independent tool name.
+     * @return file representing the tool executable, or null if the tool can 
not be found
+     */
+    String findTool( String toolName );
+
     //JAVA
     /**
      * Returns a ClassPath, which represents bootstrap libraries for the
@@ -34,14 +50,6 @@
      * it corresponds to contents of CLASSPATH environment variable.
      */
     List getStandardLibraries();
-
-    /**
-     * Gets the platform tool executable.
-     *
-     * @param toolName the tool platform independent tool name.
-     * @return file representing the tool executable, or null if the tool can 
not be found
-     */
-    String findTool( String toolName );
 
     //JAVA
     /**

Modified: maven/components/branches/maven-2.1-jvz/maven.iws
URL: 
http://svn.apache.org/viewvc/maven/components/branches/maven-2.1-jvz/maven.iws?view=diff&rev=450387&r1=450386&r2=450387
==============================================================================
--- maven/components/branches/maven-2.1-jvz/maven.iws (original)
+++ maven/components/branches/maven-2.1-jvz/maven.iws Wed Sep 27 02:28:52 2006
@@ -148,7 +148,7 @@
       <file leaf-file-name="Toolchain.java" pinned="false" current="true" 
current-in-tab="true">
         <entry 
file="file://$PROJECT_DIR$/maven-toolchain/src/main/java/org/apache/maven/Toolchain.java">
           <provider selected="true" editor-type-id="text-editor">
-            <state line="50" column="0" selection-start="1210" 
selection-end="1210" vertical-scroll-proportion="0.66172105">
+            <state line="49" column="69" selection-start="1342" 
selection-end="1342" vertical-scroll-proportion="0.8189911">
               <folding />
             </state>
           </provider>
@@ -1107,7 +1107,7 @@
     </entry>
     <entry 
file="file://$PROJECT_DIR$/maven-toolchain/src/main/java/org/apache/maven/Toolchain.java">
       <provider selected="true" editor-type-id="text-editor">
-        <state line="50" column="0" selection-start="1210" 
selection-end="1210" vertical-scroll-proportion="0.66172105">
+        <state line="49" column="69" selection-start="1342" 
selection-end="1342" vertical-scroll-proportion="0.8189911">
           <folding />
         </state>
       </provider>


Reply via email to