1 20 package org.enhydra.barracuda.taskdefs; 21 22 import java.io.File ; 24 25 import org.enhydra.xml.xmlc.taskdef.*; 26 27 31 public class DummyXmlcUtils extends XmlcUtils { 32 33 37 48 public String [] getOptionFiles( File theDirectory ) { 49 return null; 50 } 51 52 66 public String [] getOptionFiles( File theDirectory, String theOptionsFileName ) { 67 return null; 68 } 69 70 84 public String [] getOptionFiles( File theDirectory, String [] theOptionsFileNames ) { 85 return null; 86 } 87 88 102 public String [] getOptionFiles( File [] theDirectories, String theOptionsFileName ) { 103 return null; 104 } 105 106 120 public String [] getOptionFiles( File [] theDirectories, String [] theOptionsFileNames ) { 121 return null; 122 } 123 124 154 public String buildFullBaseFileName( String thePackageName, 155 String thePackageDir, 156 String theBaseFileName ) { 157 return null; 158 } 159 160 171 public String buildClassName( String theFullBaseFileName, 172 String theModifier ) { 173 return null; 174 } 175 176 } 177 178 | Popular Tags |