Skip to content

Commit

Permalink
update javadoc to fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddykasp committed Sep 1, 2023
1 parent 28284d1 commit 8180323
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* http://rtsys.informatik.uni-kiel.de/kieler
*
* Copyright 2022 by
* Copyright 2022 - 2023 by
* + Kiel University
* + Department of Computer Science
* + Real-Time and Embedded Systems Group
Expand All @@ -28,17 +28,15 @@ public class IdentityConnective extends UnaryConnective {

/**
* Constructor for unnamed rule.
* @param leftOperand left operand
* @param rightOperand right operand
* @param operand operand
*/
public IdentityConnective(SemanticFilterRule operand) {
this(operand, null, null);
}

/**
* Constructor for unnamed rule with default value.
* @param leftOperand left operand
* @param rightOperand right operand
* @param operand operand
* @param defaultValue the default value
*/
public IdentityConnective(SemanticFilterRule operand, Boolean defaultValue) {
Expand All @@ -47,8 +45,7 @@ public IdentityConnective(SemanticFilterRule operand, Boolean defaultValue) {

/**
* Constructor for named rule.
* @param leftOperand left operand
* @param rightOperand right operand
* @param operand operand
* @param ruleName rule name
*/
public IdentityConnective(SemanticFilterRule operand, String ruleName) {
Expand All @@ -57,8 +54,7 @@ public IdentityConnective(SemanticFilterRule operand, String ruleName) {

/**
* Constructor for named rule with default value.
* @param leftOperand left operand
* @param rightOperand right operand
* @param operand operand
* @param defaultValue the default value
* @param ruleName rule name
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* http://rtsys.informatik.uni-kiel.de/kieler
*
* Copyright 2022 by
* Copyright 2022 - 2023 by
* + Kiel University
* + Department of Computer Science
* + Real-Time and Embedded Systems Group
Expand All @@ -19,7 +19,7 @@
/**
* A LessEquals Connective takes two numeric rules R1 and R2 and evaluates to true
* iff
* R1 <= R2
* {@code R1 <= R2}
*
* @author mka
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* http://rtsys.informatik.uni-kiel.de/kieler
*
* Copyright 2022 by
* Copyright 2022 - 2023 by
* + Kiel University
* + Department of Computer Science
* + Real-Time and Embedded Systems Group
Expand All @@ -19,7 +19,7 @@
/**
* A LessThan Connective takes two numeric rules R1 and R2 and evaluates to true
* iff
* R1 < R2
* {@code R1 < R2}
* @author tik, mka
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* http://rtsys.informatik.uni-kiel.de/kieler
*
* Copyright 2022 by
* Copyright 2022 - 2023 by
* + Kiel University
* + Department of Computer Science
* + Real-Time and Embedded Systems Group
Expand All @@ -30,11 +30,9 @@ public class NumericAdditionConnective extends BinaryConnective implements Numer
protected static final String NAME = "NUMERICADDITION";

/**
* Constructor for named rule with default value.
* Constructor for numeric addition connective.
* @param leftOperand left operand
* @param rightOperand right operand
* @param defaultValue the default value
* @param ruleName rule name
*/
public NumericAdditionConnective(NumericResult leftOperand, NumericResult rightOperand) {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* http://rtsys.informatik.uni-kiel.de/kieler
*
* Copyright 2022 by
* Copyright 2022 - 2023 by
* + Kiel University
* + Department of Computer Science
* + Real-Time and Embedded Systems Group
Expand All @@ -30,11 +30,9 @@ public class NumericDivisionConnective extends BinaryConnective implements Numer
protected static final String NAME = "NUMERICDIVISION";

/**
* Constructor for named rule with default value.
* Constructor for numeric division connective.
* @param leftOperand left operand
* @param rightOperand right operand
* @param defaultValue the default value
* @param ruleName rule name
*/
public NumericDivisionConnective(NumericResult leftOperand, NumericResult rightOperand) {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* http://rtsys.informatik.uni-kiel.de/kieler
*
* Copyright 2022 by
* Copyright 2022 - 2023 by
* + Kiel University
* + Department of Computer Science
* + Real-Time and Embedded Systems Group
Expand All @@ -30,11 +30,9 @@ public class NumericMultiplicationConnective extends BinaryConnective implements
protected static final String NAME = "NUMERICMULTIPLICATION";

/**
* Constructor for named rule with default value.
* Constructor for numeric multiplication connective.
* @param leftOperand left operand
* @param rightOperand right operand
* @param defaultValue the default value
* @param ruleName rule name
*/
public NumericMultiplicationConnective(NumericResult leftOperand, NumericResult rightOperand) {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* http://rtsys.informatik.uni-kiel.de/kieler
*
* Copyright 2022 by
* Copyright 2022 - 2023 by
* + Kiel University
* + Department of Computer Science
* + Real-Time and Embedded Systems Group
Expand All @@ -30,11 +30,9 @@ public class NumericSubtractionConnective extends BinaryConnective implements Nu
protected static final String NAME = "NUMERICSUBSTRACTION";

/**
* Constructor for named rule with default value.
* Constructor for numeric subtraction connective.
* @param leftOperand left operand
* @param rightOperand right operand
* @param defaultValue the default value
* @param ruleName rule name
*/
public NumericSubtractionConnective(NumericResult leftOperand, NumericResult rightOperand) {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@

/**
* Provides a parser for the semantic filter language. The syntax is of the form
* <rule> <operator> <rule> for all binary operators. The most basic rule is a tag
* #<tag> that evaluates to true if an element has that tag and false otherwise.
* Tags may also contain numeric values in which case they are written as $<tag>.
* &lt;rule&gt; &lt;operator&gt; &lt;rule&gt; for all binary operators. The most basic rule is a tag
* #&lt;tag&gt; that evaluates to true if an element has that tag and false otherwise.
* Tags may also contain numeric values in which case they are written as $&lt;tag&gt;.
* Constant values can be expressed as true, false or a number. Brackets may be used
* to override precedences. The full list of available operators is given in the table
* below.
*
* <pre>{@code
* | Operator | Syntax | Input | Output | Precedence |
* |----------------|------------------------|-----------------|---------|------------|
* | And | \<expr\> && \<expr\> | boolean | boolean | 4 |
Expand All @@ -70,7 +70,7 @@
* | LessThan | \<expr\> < \<expr\> | numeric | boolean | 8 |
* | Equals | \<expr\> = \<expr\> | numeric/boolean | boolean | 7 |
* | NotEqual | \<expr\> != \<expr\> | numeric/boolean | boolean | 7 |
* }</pre>
* @author mka
*
*/
Expand Down

0 comments on commit 8180323

Please sign in to comment.