-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from lat-lon/feature/multipleUebergaenge
Improved grammar to add support for multiple transitions
- Loading branch information
Showing
18 changed files
with
258 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
URL=jdbc:postgresql://localhost/petroparser | ||
USER=petroparser | ||
PASSWORD=petroparser | ||
WOERTERBUCH=woerterbuch.woerterbuch | ||
SCHLUESSELTYPEN=woerterbuch.schluesseltypen | ||
SCHLUESSELMAPPING=bml.bml_schluesselmapping | ||
DATEFIELD=PETRO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,20 +8,21 @@ | |
import org.sep3tools.gen.PetroGrammarLexer; | ||
import org.sep3tools.gen.PetroGrammarParser; | ||
|
||
import java.sql.SQLException; | ||
import java.util.*; | ||
|
||
import static java.util.Objects.isNull; | ||
|
||
/** | ||
* Command line launcher for SEP3 to BML tool | ||
* Command line launcher for SEP3 to BML tool. | ||
* | ||
* @author Jeronimo Wanhoff <[email protected]> | ||
*/ | ||
public class LaunchBML { | ||
|
||
/** | ||
* Launches SEP3 tool with arguments: | ||
* @param args DB URL, DB user, DB password, Schluesselmapping table name SEP3 string | ||
* @param args DB URL, DB user, DB password, Schluesselmapping table name SEP3 string. | ||
* to process | ||
*/ | ||
public static void main(String[] args) { | ||
|
@@ -120,10 +121,10 @@ public static String S3_AsBmlLitho(String s3String, String sm) { | |
* @return BML format of SEP3 input | ||
*/ | ||
@Function | ||
public static String S3_AsBmlLitho_verbose(String s3String, String sm) { | ||
public static String s3AsBmlLithoVerbose(final String s3String, final String sm) { | ||
JavaConnector.setSm(sm); | ||
String result = S3_AsBmlLitho(s3String); | ||
return result; | ||
} | ||
|
||
} | ||
} |
Oops, something went wrong.