Skip to content

Commit 3c0450b

Browse files
making doc work minimally
1 parent 5d9cf0e commit 3c0450b

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
<plugin>
128128
<groupId>org.codehaus.mojo</groupId>
129129
<artifactId>findbugs-maven-plugin</artifactId>
130-
<version>2.0.1</version>
130+
<version>3.0.1</version>
131131
</plugin>
132132
<plugin>
133133
<groupId>org.apache.maven.plugins</groupId>

src/main/java/pl/psnc/dl/ege/component/Converter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* <p>Main interface of EGE Converter.</p>
1313
*
14-
* <p>Converter this component is responsible for converting the input data. It may be, for
14+
* <p>Converter: this component is responsible for converting the input data. It may be, for
1515
* example, conversion from XML to Word, conversion from Word to PDF, conversion of the
1616
* XML from one form to another (e.g. TEI P4/MASTER -> ENRICH TEI P5) or even cleaning the input data
1717
* (e.g. removing redundant information).</p>

src/main/java/pl/psnc/dl/ege/component/Recognizer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* <p>Main EGE Recognizer interface.</p>
1111
*
12-
* Recognizer this component is responsible for the recognition of the Internet Media Type
12+
* Recognizer: this component is responsible for the recognition of the Internet Media Type
1313
* (MIME type) of the given input data. For example, it will receive the input data and state
1414
* that the input data has text/xml Internet Media Type (IMT). The recognized data may be
1515
* further validated to check the format of the data.

src/main/java/pl/psnc/dl/ege/component/Validator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
/**
1313
* <p>Main EGE validator interface.</p>
1414
*
15-
* Validator this component is responsible for validation of the input data. For example it may
15+
* Validator: this component is responsible for validation of the input data. For example it may
1616
* be used to validate the ENRICH TEI 5 data in particular Internet Media Type (e.g. text/xml)
1717
* either received from end user or created by one of the converters. We will assume the
18-
* following notation: ENRICH TEI 5 (text/xml) it means that validator is able to validate
18+
* following notation: ENRICH TEI 5 (text/xml) - it means that validator is able to validate
1919
* ENRICH TEI 5 format encoded in text/xml Internet Media Type.
2020
*
2121
* @author mariuszs

0 commit comments

Comments
 (0)