Java Doc for BridgeInterface.java in  » IDE-Netbeans » library » org » apache » tools » ant » module » bridge » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 » IDE Netbeans » library » org.apache.tools.ant.module.bridge 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.tools.ant.module.bridge.BridgeInterface

All known Subclasses:   org.apache.tools.ant.module.bridge.DummyBridgeImpl,  org.apache.tools.ant.module.bridge.impl.BridgeImpl,
BridgeInterface
public interface BridgeInterface (Code)
What is implemented by bridge.jar.
author:
   Jesse Glick




Method Summary
 StringgetAntVersion()
     Get some informational value of the Ant version.
 String[]getEnumeratedValues(Class c)
     Get values of an enumeration class.
 IntrospectionHelperProxygetIntrospectionHelper(Class clazz)
     Get a proxy for IntrospectionHelper, to introspect task + type structure.
 booleanisAnt16()
     Check whether Ant 1.6 is loaded.
 booleanrun(File buildFile, List<String> targets, InputStream in, OutputWriter out, OutputWriter err, Map<String, String> properties, int verbosity, String displayName, Runnable interestingOutputCallback, ProgressHandle handle)
     Actually run a build script.
 voidstop(Thread process)
     Try to stop a running build.
 booleantoBoolean(String val)
     See Project.toBoolean.



Method Detail
getAntVersion
String getAntVersion()(Code)
Get some informational value of the Ant version. the version



getEnumeratedValues
String[] getEnumeratedValues(Class c)(Code)
Get values of an enumeration class. If it is not actually an enumeration class, return null.



getIntrospectionHelper
IntrospectionHelperProxy getIntrospectionHelper(Class clazz)(Code)
Get a proxy for IntrospectionHelper, to introspect task + type structure.



isAnt16
boolean isAnt16()(Code)
Check whether Ant 1.6 is loaded. If so, additional abilities may be possible, such as namespace support.



run
boolean run(File buildFile, List<String> targets, InputStream in, OutputWriter out, OutputWriter err, Map<String, String> properties, int verbosity, String displayName, Runnable interestingOutputCallback, ProgressHandle handle)(Code)
Actually run a build script.
Parameters:
  buildFile - an Ant build script
Parameters:
  targets - a list of target names to run, or null to run the default target
Parameters:
  in - an input stream for console input
Parameters:
  out - an output stream with the ability to have hyperlinks
Parameters:
  err - an error stream with the ability to have hyperlinks
Parameters:
  properties - any Ant properties to define
Parameters:
  verbosity - the intended logging level
Parameters:
  displayName - a user-presentable name for the session
Parameters:
  interestingOutputCallback - will be called if and when some interesting output appears, or input is requested
Parameters:
  handle - a progress handle to update if appropriate (switch to sleeping and back to indeterminate) true if the build succeeded, false if it failed for any reason



stop
void stop(Thread process)(Code)
Try to stop a running build. The implementation may wait for a while to stop at a safe point, and/or stop forcibly.
Parameters:
  process - the thread which is currently running the build (in which BridgeInterface.run was invoked)



toBoolean
boolean toBoolean(String val)(Code)
See Project.toBoolean.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.