MtasFunctionParserFunctionDefault.java.html
3.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MtasFunctionParserFunctionDefault.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">MTAS</a> > <a href="index.source.html" class="el_package">mtas.parser.function.util</a> > <span class="el_source">MtasFunctionParserFunctionDefault.java</span></div><h1>MtasFunctionParserFunctionDefault.java</h1><pre class="source lang-java linenums">package mtas.parser.function.util;
import java.io.IOException;
import mtas.codec.util.CodecUtil;
/**
* The Class MtasFunctionParserFunctionDefault.
*/
public class MtasFunctionParserFunctionDefault
extends MtasFunctionParserFunction {
/**
* Instantiates a new mtas function parser function default.
*
* @param numberOfArguments the number of arguments
*/
<span class="fc" id="L18"> public MtasFunctionParserFunctionDefault(int numberOfArguments) {</span>
<span class="fc" id="L19"> this.dataType = CodecUtil.DATA_TYPE_LONG;</span>
<span class="fc" id="L20"> this.needPositions = false;</span>
<span class="fc" id="L21"> this.sumRule = true;</span>
<span class="pc bpc" id="L22" title="1 of 2 branches missed."> this.degree = numberOfArguments > 0 ? 1 : 0;</span>
<span class="fc bfc" id="L23" title="All 2 branches covered."> for (int i = 0; i < numberOfArguments; i++) {</span>
<span class="fc" id="L24"> this.needArgument.add(i);</span>
}
<span class="fc" id="L26"> }</span>
/*
* (non-Javadoc)
*
* @see
* mtas.parser.function.util.MtasFunctionParserFunction#getValueDouble(long[],
* long)
*/
@Override
public double getValueDouble(long[] args, long n) throws IOException {
<span class="nc" id="L37"> double value = 0;</span>
<span class="nc bnc" id="L38" title="All 2 branches missed."> if (args != null) {</span>
<span class="nc bnc" id="L39" title="All 2 branches missed."> for (long a : args) {</span>
<span class="nc" id="L40"> value += a;</span>
}
}
<span class="nc" id="L43"> return value;</span>
}
/*
* (non-Javadoc)
*
* @see
* mtas.parser.function.util.MtasFunctionParserFunction#getValueLong(long[],
* long)
*/
@Override
public long getValueLong(long[] args, long n) throws IOException {
<span class="fc" id="L55"> long value = 0;</span>
<span class="pc bpc" id="L56" title="1 of 2 branches missed."> if (args != null) {</span>
<span class="fc bfc" id="L57" title="All 2 branches covered."> for (long a : args) {</span>
<span class="fc" id="L58"> value += a;</span>
}
}
<span class="fc" id="L61"> return value;</span>
}
}
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.7.9.201702052155</span></div></body></html>