org.apache.tools.ant.util

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Build » ANT » org.apache.tools.ant.util 
org.apache.tools.ant.util
Java Source File NameTypeComment
Base64Converter.javaClass BASE 64 encoding of a String or an array of bytes.
ChainedMapper.javaClass A ContainerMapper that chains the results of the first nested FileNameMappers into sourcefiles for the second, the second to the third, and so on, returning the resulting mapped filenames from the last nested FileNameMapper.
ClasspathUtils.javaClass Offers some helper methods on the Path structure in ant.
ClasspathUtilsTest.javaClass
CollectionUtils.javaClass A set of helper methods related to collection manipulation.
CollectionUtilsTest.javaClass Tests for org.apache.tools.ant.util.CollectionUtils.
CompositeMapper.javaClass A ContainerMapper that unites the results of its constituent FileNameMappers into a single set of result filenames.
ConcatFileInputStream.javaClass Special InputStream that will concatenate the contents of an array of files.
ConcatResourceInputStream.javaClass Special InputStream that will concatenate the contents of Resources from a single ResourceCollection.
ContainerMapper.javaClass A FileNameMapper that contains other FileNameMappers.
DateUtils.javaClass Helper methods to deal with date/time formatting with a specific defined format (ISO8601) or a plurialization correct elapsed time in minutes and seconds.
DateUtilsTest.javaClass TestCase for DateUtils.
DeweyDecimal.javaClass Utility class to contain version numbers in "Dewey Decimal" syntax.
DOMElementWriter.javaClass Writes a DOM tree to a given Writer.
DOMElementWriterTest.javaClass Tests for org.apache.tools.ant.util.DOMElementWriter.
DOMUtils.javaClass Some utility methods for common tasks when building DOM trees in memory.
FileNameMapper.javaInterface Interface to be used by SourceFileScanner.

Used to find the name of the target file(s) corresponding to a source file.

The rule by which the file names are transformed is specified via the setFrom and setTo methods.

FileTokenizer.javaClass Class to read the complete input into a string.
FileUtils.javaClass This class also encapsulates methods which allow Files to be referred to using abstract path names which are translated to native system file paths at runtime as well as copying files or setting their last modification time.
FileUtilsTest.javaClass Tests for org.apache.tools.ant.util.FileUtils.
FlatFileNameMapper.javaClass Implementation of FileNameMapper that always returns the source file name without any leading directory information.
GlobPatternMapper.javaClass Implementation of FileNameMapper that does simple wildcard pattern replacements.

This does simple translations like *.foo -> *.bar where the prefix to .foo will be left unchanged.

GlobPatternMapperTest.javaClass Tests for org.apache.tools.ant.util;GlobPatternMapper.
IdentityMapper.javaClass Implementation of FileNameMapper that always returns the source file name.
IdentityStack.javaClass Identity Stack.
JavaEnvUtils.javaClass A set of helper methods related to locating executables or checking conditons of a given Java installation.
JavaEnvUtilsTest.javaClass TestCase for JavaEnvUtils.
JAXPUtils.javaClass Collection of helper methods that retrieve a ParserFactory or Parsers and Readers.
JAXPUtilsTest.javaClass
KeepAliveInputStream.javaClass Class that can be used to wrap System.in without getting anxious about any client closing the stream.
KeepAliveOutputStream.javaClass Class that can be used to wrap System.out and System.err without getting anxious about any client closing the stream.
LazyFileOutputStream.javaClass Class that delays opening the output file until the first bytes shall be written or the method LazyFileOutputStream.open open has been invoked explicitly.
LazyFileOutputStreamTest.javaClass
LazyHashtable.javaClass Hashtable implementation that allows delayed construction of expensive objects All operations that need access to the full list of objects will call initAll() first.
LeadPipeInputStream.javaClass Special PipedInputStream that will not die when the writing Thread is no longer alive.
LineOrientedOutputStream.javaClass Invokes LineOrientedOutputStream.processLine processLine whenever a full line has been written to this stream.
LineOrientedOutputStreamTest.javaClass
LineTokenizer.javaClass
LoaderUtils.javaClass
LoaderUtilsTest.javaClass
MergingMapper.javaClass Implementation of FileNameMapper that always returns the same target file name.
OutputStreamFunneler.javaClass Manages a set of OutputStreams to write to a single underlying stream, which is closed only when the last "funnel" has been closed.
PackageNameMapper.javaClass Maps directory name matches into a dotted package name.
PackageNameMapperTest.javaClass
PropertyOutputStream.javaClass Exception thrown when an attempt is made to get an OutputStream from an immutable Resource.
ProxySetup.javaClass Code to do proxy setup.
ReaderInputStream.javaClass Adapts a Reader as an InputStream.
ReaderInputStreamTest.javaClass
ReflectUtil.javaClass Utility class to handle reflection on java objects.
ReflectWrapper.javaClass Utility class to handle reflection on java objects.
RegexpPatternMapper.javaClass Implementation of FileNameMapper that does regular expression replacements.
ResourceUtils.javaClass This class provides utility methods to process Resources.
ResourceUtilsTest.javaClass Tests for org.apache.tools.ant.util.ResourceUtils.
Retryable.javaInterface Simple interface for executing a piece of code.
RetryHandler.javaClass A simple utility class to take a piece of code (that implements Retryable interface) and executes that with possibility to retry the execution in case of IOException.
ScriptRunner.javaClass This class is here for backwards compatiblity.
ScriptRunnerBase.javaClass This is a common abstract base case for script runners.
ScriptRunnerCreator.javaClass This is a helper class used by ScriptRunnerHelper to create a ScriptRunner based on a classloader and on a language.
ScriptRunnerHelper.javaClass A class to help in creating, setting and getting script runners.
SourceFileScanner.javaClass Utility class that collects the functionality of the various scanDir methods that have been scattered in several tasks before.

The only method returns an array of source files.

StringTokenizer.javaClass Class to tokenize the input as areas separated by white space, or by a specified list of delim characters.
StringUtils.javaClass A set of helper methods related to string manipulation.
StringUtilsTest.javaClass
TaskLogger.javaClass A facade that makes logging nicer to use.
TeeOutputStream.javaClass
TimeoutObserver.javaInterface Interface for classes that want to be notified by Watchdog.
Tokenizer.javaInterface
UnPackageNameMapper.javaClass Maps dotted package name matches to a directory name.
UnPackageNameMapperTest.javaClass
UUEncoder.javaClass UUEncoding of an input stream placed into an outputstream.
Watchdog.javaClass
WeakishReference.javaClass These classes are part of some code to reduce memory leaks by only retaining weak references to things on Java1.2+, and yet still work (with leaky hard references) on Java1.1.
XmlConstants.javaClass
XMLFragment.javaClass Use this class as a nested element if you want to get a literal DOM fragment of something nested into your task/type.
XMLFragmentTest.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.