Skip to content

Commit

Permalink
fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
SingingBush committed Oct 13, 2024
1 parent adf67ac commit f09104a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
* This class represents the element factory for the barcode extension for Saxon.
* <p>
* Later releases of Saxon are split into 3 versions:
* </p>
* <ul>
* <li>Saxon-HE (Home Edition) available on maven central</li>
* <li>Saxon-PE (Professional Edition) available from Saxonica maven repo &amp; requires license</li>
* <li>Saxon-EE (Enterprise Edition) available from Saxonica maven repo &amp; requires license</li>
* </ul>
* </p>
* <p>
* Saxonica only provide support for element extensibility in the EE and PE releases.
* From version 10 onward, instead of implementing "net.sf.saxon.style.ExtensionElementFactory"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
*
* @author Jeremias Maerki &amp; Samael Bate (singingbush)
*/
public class BarcodeStyleElement extends StyleElement {
public class BarcodeStyleElement extends ExtensionInstruction {

private static final int STATIC_CONTEXT = -1;

Expand All @@ -73,13 +73,13 @@ public class BarcodeStyleElement extends StyleElement {
// //this.defaultCollationName = null;
// }

/**
* @see StyleElement#isInstruction()
*/
@Override
public boolean isInstruction() {
return true; // todo: evaluate extending ExtensionInstruction which already does this
}
// /**
// * @see StyleElement#isInstruction()
// */
// @Override
// public boolean isInstruction() {
// return true; // todo: evaluate extending ExtensionInstruction which already does this
// }

/**
* Determine whether this type of element is allowed to contain a template-body
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@

/**
* Test class for the Saxon PE/EE extension.
*
* <p>
* Saxon-PE: com.saxonica.config.ProfessionalTransformerFactory
* Saxon-EE: com.saxonica.config.EnterpriseTransformerFactory
*
* </p>
* See {@linkplain 'https://www.saxonica.com/documentation12/index.html#!extensibility/extension-functions'}
*
* @author Jeremias Maerki &amp; Samael Bate
Expand Down

0 comments on commit f09104a

Please sign in to comment.