]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Bugzilla #49172:
authorPascal Sancho <psancho@apache.org>
Fri, 18 Jun 2010 09:48:27 +0000 (09:48 +0000)
committerPascal Sancho <psancho@apache.org>
Fri, 18 Jun 2010 09:48:27 +0000 (09:48 +0000)
patch applied: corrections in Dev > Extensions page; thanks to  Gerald Buchgraber

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@955915 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/dev/extensions.xml

index 62e846c0ffa8771a72a9496f4b25604982516388..769a663af38283e9902bae2f19f229043a1d491c 100644 (file)
@@ -45,8 +45,8 @@ To add your own extension you need to do the following things.
 </p>
         <ol>
           <li>Write code that implements your extension functionality. The easiest place to
-start is by looking at the code in org.apache.fop.extension, and by looking at the examples in the <code>examples</code> directory.</li>
-          <li>Create a class that implements the org.apache.fop.fo.ElementMapping interface. ElementMapping is a hashmap of all of the elements in a particular namespace, which makes it easier for FOP to create a different object for each element.
+start is by looking at the code in org.apache.fop.fo.extensions, and by looking at the examples in the <code>examples</code> directory.</li>
+          <li>Create a class that extends the abstract org.apache.fop.fo.ElementMapping class. ElementMapping is a hashmap of all of the elements in a particular namespace, which makes it easier for FOP to create a different object for each element.
 ElementMapping objects are static to save on memory.
 They are loaded by FOP when parsing starts to validate input.</li>
           <li>Create the following file: "/META-INF/services/org.apache.fop.fo.ElementMapping", which should contain the fully qualified classname of your ElementMapping implementation class.</li>