Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormmasterso2010-05-06 22:12:19 +0000
committermmasterso2010-05-06 22:12:19 +0000
commit49921fb6f172c557784bcc62bb7586b1298597c0 (patch)
tree9cae7ca719e804eecd030cc46e1f2165635df17e /plugins/org.eclipse.osee.ote.message
parent905729a1c617b5a11e62b17363971d74f843ae03 (diff)
downloadorg.eclipse.osee-49921fb6f172c557784bcc62bb7586b1298597c0.tar.gz
org.eclipse.osee-49921fb6f172c557784bcc62bb7586b1298597c0.tar.xz
org.eclipse.osee-49921fb6f172c557784bcc62bb7586b1298597c0.zip
updated fixed point calculations to use an offset instead of minval. This will be used for all fixed point signals, not just unsigned ones.
Diffstat (limited to 'plugins/org.eclipse.osee.ote.message')
-rw-r--r--plugins/org.eclipse.osee.ote.message/src/org/eclipse/osee/ote/message/elements/FixedPointElement.java676
1 files changed, 339 insertions, 337 deletions
diff --git a/plugins/org.eclipse.osee.ote.message/src/org/eclipse/osee/ote/message/elements/FixedPointElement.java b/plugins/org.eclipse.osee.ote.message/src/org/eclipse/osee/ote/message/elements/FixedPointElement.java
index 8f743ba2382..56f2da1fe9f 100644
--- a/plugins/org.eclipse.osee.ote.message/src/org/eclipse/osee/ote/message/elements/FixedPointElement.java
+++ b/plugins/org.eclipse.osee.ote.message/src/org/eclipse/osee/ote/message/elements/FixedPointElement.java
@@ -11,6 +11,7 @@
package org.eclipse.osee.ote.message.elements;
import java.util.logging.Level;
+
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.ote.core.MethodFormatter;
import org.eclipse.osee.ote.core.environment.interfaces.ITestEnvironmentAccessor;
@@ -28,358 +29,359 @@ import org.eclipse.osee.ote.message.interfaces.ITestAccessor;
*/
public class FixedPointElement extends RealElement {
- private final double resolution;
- private final boolean signed;
- private final double minVal;
-
- public FixedPointElement(Message<?,?,?> message, String elementName, MessageData messageData, double resolution,
- boolean signed, int byteOffset, int msb, int lsb) {
- this(message, elementName, messageData, resolution, 0, signed, byteOffset, msb, lsb, msb, lsb);
- }
-
- public FixedPointElement(Message<?,?,?> message, String elementName, MessageData messageData, double resolution,
- double minVal, boolean signed, int byteOffset, int msb, int lsb) {
- this(message, elementName, messageData, resolution, minVal, signed, byteOffset, msb, lsb, msb, lsb);
- }
-
- public FixedPointElement(Message<?,?,?> message, String elementName, MessageData messageData, double resolution,
- boolean signed, int byteOffset, int msb, int lsb, int originalLsb, int originalMsb) {
- this(message, elementName, messageData, resolution, 0, signed, byteOffset, msb, lsb, originalLsb, originalMsb);
- }
-
- public FixedPointElement(Message<?,?,?> message, String elementName, MessageData messageData, double resolution,
- double minVal, boolean signed, int byteOffset, int msb, int lsb, int originalLsb, int originalMsb) {
- super(message, elementName, messageData, byteOffset, msb, lsb, originalLsb, originalMsb);
- this.resolution = resolution;
- this.signed = signed;
- this.minVal = minVal;
- }
-
- public FixedPointElement(Message<?,?,?> message, String elementName, MessageData messageData, double resolution,
- double minVal, boolean signed, int bitOffset, int bitLength) {
- super(message, elementName, messageData, bitOffset, bitLength);
- this.resolution = resolution;
- this.signed = signed;
- this.minVal = minVal;
- }
-
- /**
- * Sets the element to the "value" passed.
- *
- * @param accessor
- * @param value The value to set.
- */
+ private final double resolution;
+ private final boolean signed;
+ private final double offset;
+
+ public FixedPointElement(Message<?,?,?> message, String elementName, MessageData messageData, double resolution,
+ boolean signed, int byteOffset, int msb, int lsb) {
+ this(message, elementName, messageData, resolution, 0, signed, byteOffset, msb, lsb, msb, lsb);
+ }
+
+ public FixedPointElement(Message<?,?,?> message, String elementName, MessageData messageData, double resolution,
+ double offset, boolean signed, int byteOffset, int msb, int lsb) {
+ this(message, elementName, messageData, resolution, offset, signed, byteOffset, msb, lsb, msb, lsb);
+ }
+
+ public FixedPointElement(Message<?,?,?> message, String elementName, MessageData messageData, double resolution,
+ boolean signed, int byteOffset, int msb, int lsb, int originalLsb, int originalMsb) {
+ this(message, elementName, messageData, resolution, 0, signed, byteOffset, msb, lsb, originalLsb, originalMsb);
+ }
+
+ public FixedPointElement(Message<?,?,?> message, String elementName, MessageData messageData, double resolution,
+ double offset, boolean signed, int byteOffset, int msb, int lsb, int originalLsb, int originalMsb) {
+ super(message, elementName, messageData, byteOffset, msb, lsb, originalLsb, originalMsb);
+ this.resolution = resolution;
+ this.signed = signed;
+ this.offset = offset;
+ }
+
+ public FixedPointElement(Message<?,?,?> message, String elementName, MessageData messageData, double resolution,
+ double offset, boolean signed, int bitOffset, int bitLength) {
+ super(message, elementName, messageData, bitOffset, bitLength);
+ this.resolution = resolution;
+ this.signed = signed;
+ this.offset = offset;
+ }
+
+ /**
+ * Sets the element to the "value" passed.
+ *
+ * @param accessor
+ * @param value The value to set.
+ */
@Override
- public void set(ITestEnvironmentAccessor accessor, double value) {
- if (accessor != null) {
+ public void set(ITestEnvironmentAccessor accessor, double value) {
+ if (accessor != null) {
accessor.getLogger().methodCalledOnObject(accessor, this.getFullName(), new MethodFormatter().add(value),
- this.getMessage());
- }
- setValue(value);
-
- if (accessor != null) {
- accessor.getLogger().methodEnded(accessor);
- }
- }
-
- /**
- * Sets the element to the "value" passeda nd immediately sends the message that contains it...
- *
- * @param accessor
- * @param value The value to set.
- */
+ this.getMessage());
+ }
+ setValue(value);
+
+ if (accessor != null) {
+ accessor.getLogger().methodEnded(accessor);
+ }
+ }
+
+ /**
+ * Sets the element to the "value" passeda nd immediately sends the message that contains it...
+ *
+ * @param accessor
+ * @param value The value to set.
+ */
@Override
- public void setAndSend(ITestEnvironmentAccessor accessor, double value) {
- this.set(accessor, value);
- super.sendMessage();
- }
-
- public void setNoLog(ITestEnvironmentAccessor accessor, double value) {
- setValue(value);
- }
-
- /**
- * Checks that this element correctly forwards a message sent from cause with the value passed.
- *
- * @param accessor
- * @param cause The originator of the signal
- * @param value The value sent by cause and being forwarded by this element
- * @throws InterruptedException
- */
- public void checkForwarding(ITestAccessor accessor, FixedPointElement cause, double value) throws InterruptedException {
- /* check for 0 to begine */
- check(accessor, 0d, 0);
-
- /* Set the DP1 Mux Signal */
- cause.set(accessor, value);
-
- /* Chk Value on DP2 */
- check(accessor, value, 1000);
-
- /* Set DP1 to 0 */
- cause.set(accessor, 0);
-
- /* Init DP2 Mux to 0 */
- set(accessor, 0);
-
- /* Chk Value on DP2 is still set */
- check(accessor, value, 500);
-
- /* Chk DP2 is 0 for two-pulse signals and high for four-oulse signal */
- check(accessor, 0d, 500);
- }
-
- private double toFixed(long value, boolean signed, double resolution, double minVal) {
+ public void setAndSend(ITestEnvironmentAccessor accessor, double value) {
+ this.set(accessor, value);
+ super.sendMessage();
+ }
+
+ public void setNoLog(ITestEnvironmentAccessor accessor, double value) {
+ setValue(value);
+ }
+
+ /**
+ * Checks that this element correctly forwards a message sent from cause with the value passed.
+ *
+ * @param accessor
+ * @param cause The originator of the signal
+ * @param value The value sent by cause and being forwarded by this element
+ * @throws InterruptedException
+ */
+ public void checkForwarding(ITestAccessor accessor, FixedPointElement cause, double value) throws InterruptedException {
+ /* check for 0 to begine */
+ check(accessor, 0d, 0);
+
+ /* Set the DP1 Mux Signal */
+ cause.set(accessor, value);
+
+ /* Chk Value on DP2 */
+ check(accessor, value, 1000);
+
+ /* Set DP1 to 0 */
+ cause.set(accessor, 0);
+
+ /* Init DP2 Mux to 0 */
+ set(accessor, 0);
+
+ /* Chk Value on DP2 is still set */
+ check(accessor, value, 500);
+
+ /* Chk DP2 is 0 for two-pulse signals and high for four-oulse signal */
+ check(accessor, 0d, 500);
+ }
+
+ private double toFixed(long value, boolean signed, double resolution, double offset) {
int shift = 64 - (lsb - msb + 1);
- if (signed) {// two's compliment
+ if (signed) {// two's compliment
if (value >>> lsb - msb == 1) {// we've got a negative
- value--;
- value = ~value;
+ value--;
+ value = ~value;
value = value << shift;
- value = value >>> shift;
- value = value * -1;
- }
+ value = value >>> shift;
+ value = value * -1;
+ }
} else {
- value = value << shift;
- value = value >>> shift;
- }
- return value * resolution + (signed ? 0 : minVal);
- }
-
- private long toFixedLong(double value, boolean signed, double resolution, double minVal) {
- long returnValue = Math.round((value - (signed ? 0 : minVal)) / resolution);
-
- if(value > 0 && toFixed(returnValue, signed, resolution, minVal) < 0){
- returnValue = Math.round((value - resolution - (signed ? 0 : minVal)) / resolution);
- if(value > 0 && toFixed(returnValue, signed, resolution, minVal) < 0){
- returnValue = Math.round((value - resolution * 2 - (signed ? 0 : minVal)) / resolution);
- if(value > 0 && toFixed(returnValue, signed, resolution, minVal) < 0){
- OseeLog.log(MessageSystemTestEnvironment.class, Level.INFO, getName());
- } else {
- OseeLog.log(MessageSystemTestEnvironment.class, Level.INFO, getName());
- }
- } else {
- OseeLog.log(MessageSystemTestEnvironment.class, Level.INFO, getName());
- }
- }
+ value = value << shift;
+ value = value >>> shift;
+ }
+ return value * resolution + offset;
+ }
+
+ private long toFixedLong(double value, boolean signed, double resolution, double offset) {
+ long returnValue = Math.round((value - offset) / resolution);
+
+ if(value > 0 && toFixed(returnValue, signed, resolution, offset) < 0){
+ returnValue = Math.round((value - resolution - offset) / resolution);
+ if(value > 0 && toFixed(returnValue, signed, resolution, offset) < 0){
+ returnValue = Math.round((value - resolution * 2 - offset) / resolution);
+ if(value > 0 && toFixed(returnValue, signed, resolution, offset) < 0){
+ OseeLog.log(MessageSystemTestEnvironment.class, Level.INFO, getName());
+ } else {
+ OseeLog.log(MessageSystemTestEnvironment.class, Level.INFO, getName());
+ }
+ } else {
+ OseeLog.log(MessageSystemTestEnvironment.class, Level.INFO, getName());
+ }
+ }
if (signed && value < 0) {
- returnValue = returnValue * -1;
+ returnValue = returnValue * -1;
int shift = 64 - (lsb - msb + 1);
- returnValue = returnValue << shift;
- returnValue = ~returnValue;
- returnValue = returnValue >>> shift;
- returnValue++;
- }
- return returnValue;
- }
-
- @Override
- public void setValue(Double obj) {
- getMsgData().getMem().setLong(toFixedLong((obj), signed, resolution, minVal), byteOffset, msb, lsb);
- }
-
- @Override
- public void setHex(long hex) {
- getMsgData().getMem().setLong(hex, byteOffset, msb, lsb);
- }
-
- @Override
- public Double getValue() {
- return toFixed(getRaw(), signed, resolution, minVal);
- }
-
-
- @Override
- public Double valueOf(MemoryResource mem) {
- return toFixed(getRaw(mem), signed, resolution, minVal);
- }
+ returnValue = returnValue << shift;
+ returnValue = ~returnValue;
+ returnValue = returnValue >>> shift;
+ returnValue++;
+ }
+ return returnValue;
+ }
+
+ @Override
+ public void setValue(Double obj) {
+ getMsgData().getMem().setLong(toFixedLong((obj), signed, resolution, offset), byteOffset, msb, lsb);
+ }
+
+ @Override
+ public void setHex(long hex) {
+ getMsgData().getMem().setLong(hex, byteOffset, msb, lsb);
+ }
+
+ @Override
+ public Double getValue() {
+ return toFixed(getRaw(), signed, resolution, offset);
+ }
+
+
+ @Override
+ public Double valueOf(MemoryResource mem) {
+ return toFixed(getRaw(mem), signed, resolution, offset);
+ }
+
+ @Override
+ protected double toDouble(long value) {
+ return toFixed(value, signed, resolution, offset);
+ }
+
+ @Override
+ protected long toLong(double value) {
+ return toFixedLong(value, signed, resolution, offset);
+ }
+
+ /**
+ * @return Returns the offset.
+ */
+ public double getMinVal() {
+ return offset;
+ }
+
+ /**
+ * @return Returns the resolution.
+ */
+ public double getResolution() {
+ return resolution;
+ }
+
+ /**
+ * @return Returns the signed.
+ */
+ public boolean isSigned() {
+ return signed;
+ }
@Override
- protected double toDouble(long value) {
- return toFixed(value, signed, resolution, minVal);
- }
+ public void visit(IElementVisitor visitor) {
+ visitor.asFixedPointElement(this);
+ }
+
+ @Override
+ protected NonMappingFixedPointElement getNonMappingElement() {
+ return new NonMappingFixedPointElement(this);
+ }
@Override
- protected long toLong(double value) {
- return toFixedLong(value, signed, resolution, minVal);
- }
-
- /**
- * @return Returns the minVal.
- */
- public double getMinVal() {
- return minVal;
- }
- /**
- * @return Returns the resolution.
- */
- public double getResolution() {
- return resolution;
- }
-
- /**
- * @return Returns the signed.
- */
- public boolean isSigned() {
- return signed;
- }
-
- @Override
- public void visit(IElementVisitor visitor) {
- visitor.asFixedPointElement(this);
- }
-
- @Override
- protected NonMappingFixedPointElement getNonMappingElement() {
- return new NonMappingFixedPointElement(this);
- }
-
- @Override
public boolean check(ITestAccessor accessor, CheckGroup checkGroup, Double value, int milliseconds) throws InterruptedException {
- return super.check(accessor, checkGroup, adjust(value), milliseconds);
- }
-
- @Override
- public boolean check(ITestAccessor accessor, CheckGroup checkGroup, Double value) {
- return super.check(accessor, checkGroup, adjust(value));
- }
-
- @Override
- public boolean checkList(ITestAccessor accessor, CheckGroup checkGroup,
- boolean isInList, Double[] list, int milliseconds)
- throws InterruptedException {
- return super.checkList(accessor, checkGroup, isInList, adjust(list), milliseconds);
- }
-
- @Override
- public boolean checkList(ITestAccessor accessor, CheckGroup checkGroup,
- boolean wantInList, Double[] list) {
- return super.checkList(accessor, checkGroup, wantInList, adjust(list));
- }
-
- @Override
+ return super.check(accessor, checkGroup, adjust(value), milliseconds);
+ }
+
+ @Override
+ public boolean check(ITestAccessor accessor, CheckGroup checkGroup, Double value) {
+ return super.check(accessor, checkGroup, adjust(value));
+ }
+
+ @Override
+ public boolean checkList(ITestAccessor accessor, CheckGroup checkGroup,
+ boolean isInList, Double[] list, int milliseconds)
+ throws InterruptedException {
+ return super.checkList(accessor, checkGroup, isInList, adjust(list), milliseconds);
+ }
+
+ @Override
+ public boolean checkList(ITestAccessor accessor, CheckGroup checkGroup,
+ boolean wantInList, Double[] list) {
+ return super.checkList(accessor, checkGroup, wantInList, adjust(list));
+ }
+
+ @Override
public Double checkMaintain(ITestAccessor accessor, CheckGroup checkGroup, Double value, int milliseconds) throws InterruptedException {
- return super.checkMaintain(accessor, checkGroup, adjust(value), milliseconds);
- }
-
- @Override
- public Double checkMaintainList(ITestAccessor accessor, CheckGroup checkGroup,
- Double[] list, boolean isInList, int milliseconds)
- throws InterruptedException {
- return super.checkMaintainList(accessor, checkGroup, adjust(list), isInList,
- milliseconds);
- }
-
- @Override
- public Double checkMaintainNot(ITestAccessor accessor, CheckGroup checkGroup,
- Double value, int milliseconds) throws InterruptedException {
- return super.checkMaintainNot(accessor, checkGroup, adjust(value), milliseconds);
- }
-
- @Override
- public Double checkMaintainNotRange(ITestAccessor accessor,
- CheckGroup checkGroup, Double minValue, boolean minInclusive,
- Double maxValue, boolean maxInclusive, int milliseconds)
- throws InterruptedException {
- return super.checkMaintainNotRange(accessor, checkGroup, minValue,
- minInclusive, maxValue, maxInclusive, milliseconds);
- }
-
- @Override
- public Double checkMaintainRange(ITestAccessor accessor, CheckGroup checkGroup,
- Double minValue, boolean minInclusive, Double maxValue,
- boolean maxInclusive, int milliseconds) throws InterruptedException {
- return super.checkMaintainRange(accessor, checkGroup, minValue, minInclusive,
- maxValue, maxInclusive, milliseconds);
- }
-
- @Override
+ return super.checkMaintain(accessor, checkGroup, adjust(value), milliseconds);
+ }
+
+ @Override
+ public Double checkMaintainList(ITestAccessor accessor, CheckGroup checkGroup,
+ Double[] list, boolean isInList, int milliseconds)
+ throws InterruptedException {
+ return super.checkMaintainList(accessor, checkGroup, adjust(list), isInList,
+ milliseconds);
+ }
+
+ @Override
+ public Double checkMaintainNot(ITestAccessor accessor, CheckGroup checkGroup,
+ Double value, int milliseconds) throws InterruptedException {
+ return super.checkMaintainNot(accessor, checkGroup, adjust(value), milliseconds);
+ }
+
+ @Override
+ public Double checkMaintainNotRange(ITestAccessor accessor,
+ CheckGroup checkGroup, Double minValue, boolean minInclusive,
+ Double maxValue, boolean maxInclusive, int milliseconds)
+ throws InterruptedException {
+ return super.checkMaintainNotRange(accessor, checkGroup, minValue,
+ minInclusive, maxValue, maxInclusive, milliseconds);
+ }
+
+ @Override
+ public Double checkMaintainRange(ITestAccessor accessor, CheckGroup checkGroup,
+ Double minValue, boolean minInclusive, Double maxValue,
+ boolean maxInclusive, int milliseconds) throws InterruptedException {
+ return super.checkMaintainRange(accessor, checkGroup, minValue, minInclusive,
+ maxValue, maxInclusive, milliseconds);
+ }
+
+ @Override
public boolean checkNot(ITestAccessor accessor, CheckGroup checkGroup, Double value, int milliseconds) throws InterruptedException {
- return super.checkNot(accessor, checkGroup, adjust(value), milliseconds);
- }
-
- @Override
- public boolean checkNot(ITestAccessor accessor, CheckGroup checkGroup,
- Double value) {
- return super.checkNot(accessor, checkGroup, adjust(value));
- }
-
- @Override
- public boolean checkNotRange(ITestAccessor accessor, CheckGroup checkGroup,
- Double minValue, boolean minInclusive, Double maxValue,
- boolean maxInclusive, int milliseconds) throws InterruptedException {
- return super.checkNotRange(accessor, checkGroup, minValue, minInclusive,
- maxValue, maxInclusive, milliseconds);
- }
-
- @Override
- public boolean checkPulse(ITestAccessor accessor, CheckGroup checkGroup,
- Double pulsedValue, Double nonPulsedValue, int milliseconds)
- throws InterruptedException {
- return super.checkPulse(accessor, checkGroup, adjust(pulsedValue), adjust(nonPulsedValue),
- milliseconds);
- }
-
- @Override
- public boolean checkRange(ITestAccessor accessor, CheckGroup checkGroup,
- Double minValue, boolean minInclusive, Double maxValue,
- boolean maxInclusive, int milliseconds) throws InterruptedException {
- return super.checkRange(accessor, checkGroup, minValue, minInclusive, maxValue,
- maxInclusive, milliseconds);
- }
-
- @Override
- public boolean checkRange(ITestAccessor accessor, CheckGroup checkGroup,
- Double minValue, boolean minInclusive, Double maxValue,
- boolean maxInclusive) {
- return super.checkRange(accessor, checkGroup, minValue, minInclusive, maxValue,
- maxInclusive);
- }
-
- @Override
- public Double waitForList(ITestAccessor accessor, Double[] list,
- boolean isInList, int milliseconds) throws InterruptedException {
- return super.waitForList(accessor, adjust(list), isInList, milliseconds);
- }
-
- @Override
- public Double waitForNotRange(ITestEnvironmentAccessor accessor,
- Double minValue, boolean minInclusive, Double maxValue,
- boolean maxInclusive, int milliseconds) throws InterruptedException {
- return super.waitForNotRange(accessor, minValue, minInclusive, maxValue,
- maxInclusive, milliseconds);
- }
-
- @Override
- public Double waitForNotValue(ITestEnvironmentAccessor accessor, Double value,
- int milliseconds) throws InterruptedException {
- return super.waitForNotValue(accessor, adjust(value), milliseconds);
- }
-
- @Override
- public Double waitForRange(ITestEnvironmentAccessor accessor, Double minValue,
- boolean minInclusive, Double maxValue, boolean maxInclusive,
- int milliseconds) throws InterruptedException {
- return super.waitForRange(accessor, minValue, minInclusive, maxValue,
- maxInclusive, milliseconds);
- }
-
- @Override
- public Double waitForValue(ITestEnvironmentAccessor accessor, Double value,
- int milliseconds) throws InterruptedException {
- return super.waitForValue(accessor, adjust(value), milliseconds);
- }
-
- private Double adjust(Double value) {
- return toDouble(toLong(value));
- }
-
- private Double[] adjust(Double[] list) {
- Double[] newList = new Double[list.length];
- for (int i = 0; i < list.length; i++) {
- newList[i] = adjust(list[i]);
- }
- return newList;
- }
+ return super.checkNot(accessor, checkGroup, adjust(value), milliseconds);
+ }
+
+ @Override
+ public boolean checkNot(ITestAccessor accessor, CheckGroup checkGroup,
+ Double value) {
+ return super.checkNot(accessor, checkGroup, adjust(value));
+ }
+
+ @Override
+ public boolean checkNotRange(ITestAccessor accessor, CheckGroup checkGroup,
+ Double minValue, boolean minInclusive, Double maxValue,
+ boolean maxInclusive, int milliseconds) throws InterruptedException {
+ return super.checkNotRange(accessor, checkGroup, minValue, minInclusive,
+ maxValue, maxInclusive, milliseconds);
+ }
+
+ @Override
+ public boolean checkPulse(ITestAccessor accessor, CheckGroup checkGroup,
+ Double pulsedValue, Double nonPulsedValue, int milliseconds)
+ throws InterruptedException {
+ return super.checkPulse(accessor, checkGroup, adjust(pulsedValue), adjust(nonPulsedValue),
+ milliseconds);
+ }
+
+ @Override
+ public boolean checkRange(ITestAccessor accessor, CheckGroup checkGroup,
+ Double minValue, boolean minInclusive, Double maxValue,
+ boolean maxInclusive, int milliseconds) throws InterruptedException {
+ return super.checkRange(accessor, checkGroup, minValue, minInclusive, maxValue,
+ maxInclusive, milliseconds);
+ }
+
+ @Override
+ public boolean checkRange(ITestAccessor accessor, CheckGroup checkGroup,
+ Double minValue, boolean minInclusive, Double maxValue,
+ boolean maxInclusive) {
+ return super.checkRange(accessor, checkGroup, minValue, minInclusive, maxValue,
+ maxInclusive);
+ }
+
+ @Override
+ public Double waitForList(ITestAccessor accessor, Double[] list,
+ boolean isInList, int milliseconds) throws InterruptedException {
+ return super.waitForList(accessor, adjust(list), isInList, milliseconds);
+ }
+
+ @Override
+ public Double waitForNotRange(ITestEnvironmentAccessor accessor,
+ Double minValue, boolean minInclusive, Double maxValue,
+ boolean maxInclusive, int milliseconds) throws InterruptedException {
+ return super.waitForNotRange(accessor, minValue, minInclusive, maxValue,
+ maxInclusive, milliseconds);
+ }
+
+ @Override
+ public Double waitForNotValue(ITestEnvironmentAccessor accessor, Double value,
+ int milliseconds) throws InterruptedException {
+ return super.waitForNotValue(accessor, adjust(value), milliseconds);
+ }
+
+ @Override
+ public Double waitForRange(ITestEnvironmentAccessor accessor, Double minValue,
+ boolean minInclusive, Double maxValue, boolean maxInclusive,
+ int milliseconds) throws InterruptedException {
+ return super.waitForRange(accessor, minValue, minInclusive, maxValue,
+ maxInclusive, milliseconds);
+ }
+
+ @Override
+ public Double waitForValue(ITestEnvironmentAccessor accessor, Double value,
+ int milliseconds) throws InterruptedException {
+ return super.waitForValue(accessor, adjust(value), milliseconds);
+ }
+
+ private Double adjust(Double value) {
+ return toDouble(toLong(value));
+ }
+
+ private Double[] adjust(Double[] list) {
+ Double[] newList = new Double[list.length];
+ for (int i = 0; i < list.length; i++) {
+ newList[i] = adjust(list[i]);
+ }
+ return newList;
+ }
}

Back to the top