Skip to content

Commit

Permalink
mvn/javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Thome committed Jul 3, 2017
1 parent 95c2380 commit 4fd1137
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion inmemantlr-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.github.julianthome</groupId>
<artifactId>inmemantlr</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.3.6</version>
<version>1.3.7</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public static GenericParser instance(ToolCustomizer tlc, String content) {
* independent instance of a generic parser
* @param tlc a ToolCustomizer
* @param content grammar content
* @return
* @return grammar object
*/
public static GenericParser independentInstance(ToolCustomizer tlc,
String content) {
Expand Down Expand Up @@ -334,9 +334,9 @@ public ParserRuleContext parse(File toParse) throws
* @param toParse file to parse
* @param cs set context sensitivity
* @return context
* @throws IllegalWorkflowException
* @throws FileNotFoundException
* @throws ParsingException
* @throws IllegalWorkflowException if compilation did not take place
* @throws FileNotFoundException if input file cannot be found
* @throws ParsingException if an error occurs while parsing
*/
public ParserRuleContext parse(File toParse, CaseSensitiveType cs) throws
IllegalWorkflowException, FileNotFoundException, ParsingException {
Expand Down Expand Up @@ -590,23 +590,23 @@ public String getLexerName() {

/**
* set active lexer name
* @param lexerName
* @param lexerName name of the lexer to be used
*/
public void setLexerName(String lexerName) {
this.lexerName = lexerName;
}

/**
* get active parser name
* @return
* @return parser name
*/
public String getParserName() {
return parserName;
}

/**
* set active parser name
* @param parserName
* @param parserName name of the parser to be used
*/
public void setParserName(String parserName) {
this.parserName = parserName;
Expand Down
2 changes: 1 addition & 1 deletion inmemantlr-graal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>inmemantlr</artifactId>
<groupId>com.github.julianthome</groupId>
<version>1.3.6</version>
<version>1.3.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion inmemantlr-tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.github.julianthome</groupId>
<artifactId>inmemantlr</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.3.6</version>
<version>1.3.7</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.julianthome</groupId>
<artifactId>inmemantlr</artifactId>
<version>1.3.6</version>
<version>1.3.7</version>
<packaging>pom</packaging>

<modules>
Expand Down

0 comments on commit 4fd1137

Please sign in to comment.