From f77a471a6864d2c54f5f667334ba4c6b4e4ce317 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Mon, 28 Sep 2009 15:19:42 +0000 Subject: [PATCH] document antlib descriptor parsing git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@819581 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/projecthelper.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/manual/projecthelper.html b/docs/manual/projecthelper.html index e4e34d256..4e0c9dccb 100644 --- a/docs/manual/projecthelper.html +++ b/docs/manual/projecthelper.html @@ -110,6 +110,14 @@ capable of and what is is expecting: none provided
  • supportsBuildFile(File buildFile): defines if your parser can parse the input file
  • + +
  • canParseAntlibDescriptor(URL url): whether your + implementation is capable of parsing a given Antlib + descriptor. The base class returns false
  • +
  • parseAntlibDescriptor(Project containingProject, URL + source): invoked to actually parse the Antlib + descriptor if your implementation returned true + for the previous method.