Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
armlet
Open Armlet
Commits
5cb72909
Commit
5cb72909
authored
Mar 05, 2019
by
Nicolas Sannier
Browse files
no message
parent
bdfa81e3
Changes
3
Show whitespace changes
Inline
Side-by-side
.classpath
0 → 100644
View file @
5cb72909
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry
kind=
"con"
path=
"org.eclipse.jdt.launching.JRE_CONTAINER"
/>
<classpathentry
kind=
"src"
path=
"src"
/>
<classpathentry
kind=
"lib"
path=
"Libs/ant-1.9.3.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/commons-lang3-3.5.jar"
/>
<classpathentry
kind=
"lib"
path=
"Gate8.1/bin/gate.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/log4j-1.2.17.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/jackson-annotations-2.8.7.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/jackson-core-2.8.7.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/jackson-databind-2.8.7.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/java-json.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/jdom-1.1.3.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/jaxen-1.1.6.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/ivy-2.3.0.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/commons-io-2.4.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/xercesImpl-2.9.1.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/tika-core-1.7.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/flying-saucer-core-9.0.4.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/xstream-1.4.7.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/gate-asm-5.0.3.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/gate-compiler-jdt-4.3.2-P20140317-1600.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/commons-lang-2.6.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/xmlbeans-2.6.0.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/poi-3.11.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/junit-4.11.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/codemodel-2.6.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/commons-logging-1.1.3.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/commons-compress-1.8.1.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/poi-ooxml-3.11.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/poi-ooxml-schemas-3.11.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/stax2-api-3.1.1.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/poi-scratchpad-3.11.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/tika-parsers-1.7.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/fontbox-2.0.9.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/pdfbox-app-2.0.9.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/ant-launcher-1.9.3.jar"
/>
<classpathentry
kind=
"lib"
path=
"Libs/jempbox-1.8.8.jar"
/>
<classpathentry
kind=
"output"
path=
"bin"
/>
</classpath>
src/gateStandAlone/GateFinalPostProcessing.java
View file @
5cb72909
...
@@ -13,7 +13,7 @@ import java.util.Arrays;
...
@@ -13,7 +13,7 @@ import java.util.Arrays;
import
java.util.regex.Matcher
;
import
java.util.regex.Matcher
;
import
java.util.regex.Pattern
;
import
java.util.regex.Pattern
;
import
armletLegalAnalysis.model.ToReplacePostProcess
;
//
import armletLegalAnalysis.model.ToReplacePostProcess;
/**
/**
* Created by virgil.tassan (tassan-zanin-caser@svv.lu) - nicolas.sannier (sannier@svv.lu)
* Created by virgil.tassan (tassan-zanin-caser@svv.lu) - nicolas.sannier (sannier@svv.lu)
...
...
src/gateStandAlone/ToReplacePostProcess.java
0 → 100644
View file @
5cb72909
package
gateStandAlone
;
public
class
ToReplacePostProcess
{
public
int
lineNumber
;
public
String
expressionToReplace
;
public
String
replacementExpression
;
public
ToReplacePostProcess
(
int
lineNumber
,
String
expressionToReplace
,
String
replacementExpression
)
{
super
();
this
.
lineNumber
=
lineNumber
;
this
.
expressionToReplace
=
expressionToReplace
;
this
.
replacementExpression
=
replacementExpression
;
}
@Override
public
String
toString
()
{
return
"ToReplacePostProcess [lineNumber="
+
lineNumber
+
", expressionToReplace="
+
expressionToReplace
+
", replacementExpression="
+
replacementExpression
+
"]"
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment