~ubuntu-branches/ubuntu/vivid/doxia/vivid-proposed

« back to all changes in this revision

Viewing changes to doxia-core/src/main/java/org/apache/maven/doxia/parser/manager/ParserManager.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-10-08 14:20:22 UTC
  • mfrom: (2.3.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091008142022-f6ccxganfr2tbaig
Tags: 1.1-3build1
Upload to karmic, avoiding new version from unstable. LP: #443292.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 * Handles parser lookups.
26
26
 *
27
27
 * @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
28
 
 * @version $Id: ParserManager.java 567311 2007-08-18 18:30:54Z vsiveton $
 
28
 * @version $Id: ParserManager.java 746978 2009-02-23 12:20:33Z vsiveton $
29
29
 * @since 1.0
30
30
 */
31
31
public interface ParserManager
38
38
     *
39
39
     * @param id The identifier.
40
40
     * @return The corresponding parser.
41
 
     * @throws ParserNotFoundException if no parser could be found
 
41
     * @throws org.apache.maven.doxia.parser.manager.ParserNotFoundException if no parser could be found
42
42
     * for the given id.
43
43
     */
44
44
    Parser getParser( String id )