org.apache.tools.ant.types.selectors

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.types.selectors 
org.apache.tools.ant.types.selectors
Java Source File NameTypeComment
AbstractSelectorContainer.javaClass This is the a base class a container of selectors - it does not need do be a selector itself.
AndSelector.javaClass This selector has a collection of other selectors, all of which have to select a file in order for this selector to select it.
BaseExtendSelector.javaClass Convenience base class for all selectors accessed through ExtendSelector.
BaseSelector.javaClass A convenience base class that you can subclass Selectors from.
BaseSelectorContainer.javaClass This is the base class for selectors that can contain other selectors.
BaseSelectorTest.javaClass Base test case for Selectors.
ContainsRegexpSelector.javaClass Selector that filters files based on a regular expression.
ContainsRegexpTest.javaClass
ContainsSelector.javaClass Selector that filters files/resources based on whether they contain a particular string.
ContainsSelectorTest.javaClass Tests Contains Selectors.
DateSelector.javaClass Selector that chooses files based on their last modified date.
DateSelectorTest.javaClass Tests Date Selectors.
DependSelector.javaClass Selector that filters files based on whether they are newer than a matching file in another directory tree.
DependSelectorTest.javaClass
DepthSelector.javaClass Selector that filters files based on the how deep in the directory tree they are.
DepthSelectorTest.javaClass
DifferentSelector.javaClass This selector selects files against a mapped set of target files, selecting all those files which are different. Files with different lengths are deemed different automatically Files with identical timestamps are viewed as matching by default, unless you specify otherwise. Contents are compared if the lengths are the same and the timestamps are ignored or the same, except if you decide to ignore contents to gain speed.

This is a useful selector to work with programs and tasks that don't handle dependency checking properly; Even if a predecessor task always creates its output files, followup tasks can be driven off copies made with a different selector, so their dependencies are driven on the absolute state of the files, not a timestamp.

Clearly, however, bulk file comparisons is inefficient; anything that can use timestamps is to be preferred.

ExtendFileSelector.javaInterface This is the interface to be used by all custom selectors, those that are called through the <custom> tag.
ExtendSelector.javaClass Selector that selects files by forwarding the request on to other classes.
FilenameSelector.javaClass Selector that filters files based on the filename.
FilenameSelectorTest.javaClass
FileSelector.javaInterface This is the interface to be used by all selectors.
MajoritySelector.javaClass This selector is here just to shake up your thinking a bit.
MappingSelector.javaClass
MockAlgorithm.javaClass
MockCache.javaClass
MockComparator.javaClass
ModifiedSelectorTest.javaClass Unit tests for ModifiedSelector.
NoneSelector.javaClass This selector has a collection of other selectors.
NotSelector.javaClass This selector has one other selectors whose meaning it inverts.
OrSelector.javaClass This selector has a collection of other selectors, any of which have to select a file in order for this selector to select it.
PresentSelector.javaClass Selector that filters files based on whether they appear in another directory tree.
PresentSelectorTest.javaClass
SelectorContainer.javaInterface This is the interface for selectors that can contain other selectors.
SelectorScanner.javaInterface An interface used to describe the actions required by any type of directory scanner that supports Selecters.
SelectorUtils.javaClass

This is a utility class used by selectors and DirectoryScanner.

SelectSelector.javaClass This selector just holds one other selector and forwards all requests to it.
SignedSelector.javaClass Selector that chooses files based on whether they are signed or not.
SignedSelectorTest.javaClass Testcase for the <signedselector> selector.
SizeSelector.javaClass Selector that filters files based on their size.
SizeSelectorTest.javaClass
TypeSelector.javaClass Selector that selects a certain kind of file: directory or regular.
TypeSelectorTest.javaClass Tests Type Selectors.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.