Java Doc for ResolveEngine.java in  » Code-Analyzer » apache-ivy » org » apache » ivy » core » resolve » 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 » Code Analyzer » apache ivy » org.apache.ivy.core.resolve 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.ivy.core.resolve.ResolveEngine

ResolveEngine
public class ResolveEngine (Code)
The resolve engine which is the core of the dependency resolution mechanism used in Ivy. It features several resolve methods, some very simple, like ResolveEngine.resolve(File) and ResolveEngine.resolve(URL) which allow to simply resolve dependencies of a single module descriptor, or more complete one, like the ResolveEngine.resolve(ModuleDescriptor,ResolveOptions) which allows to provide options to the resolution engine.
See Also:   ResolveOptions



Constructor Summary
public  ResolveEngine(ResolveEngineSettings settings, EventManager eventManager, SortEngine sortEngine)
     Constructs a ResolveEngine.
Parameters:
  settings - the settings to use to configure the engine.

Method Summary
public  ArtifactDownloadReportdownload(Artifact artifact, DownloadOptions options)
     Download an artifact to the cache.
public  voiddownloadArtifacts(ResolveReport report, Filter artifactFilter, DownloadOptions options)
    
public  ResolvedModuleRevisionfindModule(ModuleRevisionId id, ResolveOptions options)
    
public  IvyNode[]getDependencies(URL ivySource, ResolveOptions options)
     Resolve the dependencies of a module without downloading corresponding artifacts.
public  IvyNode[]getDependencies(ModuleDescriptor md, ResolveOptions options, ResolveReport report)
     Resolve the dependencies of a module without downloading corresponding artifacts.
public  DependencyResolvergetDictatorResolver()
    
public  EventManagergetEventManager()
    
public  ResolveEngineSettingsgetSettings()
    
public  SortEnginegetSortEngine()
    
public  voidoutputReport(ResolveReport report, ResolutionCacheManager cacheMgr, ResolveOptions options)
    
public  ResolveReportresolve(File ivySource)
    
public  ResolveReportresolve(URL ivySource)
    
public  ResolveReportresolve(ModuleRevisionId mrid, ResolveOptions options, boolean changing)
     Resolves the module identified by the given mrid with its dependencies if transitive is set to true.
public  ResolveReportresolve(URL ivySource, ResolveOptions options)
     Resolve dependencies of a module described by an ivy file.
public  ResolveReportresolve(ModuleDescriptor md, ResolveOptions options)
     Resolve dependencies of a module described by a module descriptor.
public  voidsetDictatorResolver(DependencyResolver dictatorResolver)
     Sets a dictator resolver, which is used in place of regular dependency resolver for subsequent dependency resolution by this engine.


Constructor Detail
ResolveEngine
public ResolveEngine(ResolveEngineSettings settings, EventManager eventManager, SortEngine sortEngine)(Code)
Constructs a ResolveEngine.
Parameters:
  settings - the settings to use to configure the engine. Must not be null.
Parameters:
  eventManager - the event manager to use to send events about the resolution process. Must not benull.
Parameters:
  sortEngine - the sort engine to use to sort modules before producing the dependency resolutionreport. Must not be null.




Method Detail
download
public ArtifactDownloadReport download(Artifact artifact, DownloadOptions options)(Code)
Download an artifact to the cache. Not used internally, useful especially for IDE plugins needing to download artifact one by one (for source or javadoc artifact, for instance).

Downloaded artifact file can be accessed using ArtifactDownloadReport.getLocalFile .

It is possible to track the progression of the download using classical ivy progress monitoring feature (see addTransferListener).


Parameters:
  artifact - the artifact to download a report concerning the download



downloadArtifacts
public void downloadArtifacts(ResolveReport report, Filter artifactFilter, DownloadOptions options)(Code)



findModule
public ResolvedModuleRevision findModule(ModuleRevisionId id, ResolveOptions options)(Code)



getDependencies
public IvyNode[] getDependencies(URL ivySource, ResolveOptions options) throws ParseException, IOException(Code)
Resolve the dependencies of a module without downloading corresponding artifacts. The module to resolve is given by its ivy file URL. This method requires appropriate configuration of the ivy instance, especially resolvers.
Parameters:
  ivySource - url of the ivy file to use for dependency resolving
Parameters:
  confs - an array of configuration names to resolve - must not be null nor empty
Parameters:
  getCache - the cache to use - default cache is used if null
Parameters:
  date - the date to which resolution must be done - may be null an array of the resolved dependencies
throws:
  ParseException - if a parsing problem occured in the ivy file
throws:
  IOException - if an IO problem was raised during ivy file parsing



getDependencies
public IvyNode[] getDependencies(ModuleDescriptor md, ResolveOptions options, ResolveReport report)(Code)
Resolve the dependencies of a module without downloading corresponding artifacts. The module to resolve is given by its module descriptor.This method requires appropriate configuration of the ivy instance, especially resolvers.
Parameters:
  md - the descriptor of the module for which we want to get dependencies - must not benull
Parameters:
  options - the resolve options to use to resolve the dependencies
Parameters:
  report - a resolve report to fill during resolution - may be null an array of the resolved Dependencies



getDictatorResolver
public DependencyResolver getDictatorResolver()(Code)
Returns the currently configured dictator resolver, which when non null is used in place of any specified resolver in the IvySettings the currently configured dictator resolver, may be null.



getEventManager
public EventManager getEventManager()(Code)



getSettings
public ResolveEngineSettings getSettings()(Code)



getSortEngine
public SortEngine getSortEngine()(Code)



outputReport
public void outputReport(ResolveReport report, ResolutionCacheManager cacheMgr, ResolveOptions options) throws IOException(Code)



resolve
public ResolveReport resolve(File ivySource) throws ParseException, IOException(Code)



resolve
public ResolveReport resolve(URL ivySource) throws ParseException, IOException(Code)



resolve
public ResolveReport resolve(ModuleRevisionId mrid, ResolveOptions options, boolean changing) throws ParseException, IOException(Code)
Resolves the module identified by the given mrid with its dependencies if transitive is set to true.



resolve
public ResolveReport resolve(URL ivySource, ResolveOptions options) throws ParseException, IOException(Code)
Resolve dependencies of a module described by an ivy file.



resolve
public ResolveReport resolve(ModuleDescriptor md, ResolveOptions options) throws ParseException, IOException(Code)
Resolve dependencies of a module described by a module descriptor.



setDictatorResolver
public void setDictatorResolver(DependencyResolver dictatorResolver)(Code)
Sets a dictator resolver, which is used in place of regular dependency resolver for subsequent dependency resolution by this engine.
Parameters:
  dictatorResolver - the dictator resolver to use in this engine, null if regular settings should used



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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