Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.message/src/org/eclipse/osee/ote/message/elements/nonmapping/NonMappingSignedInteger16Element.java')
-rw-r--r--plugins/org.eclipse.osee.ote.message/src/org/eclipse/osee/ote/message/elements/nonmapping/NonMappingSignedInteger16Element.java96
1 files changed, 2 insertions, 94 deletions
diff --git a/plugins/org.eclipse.osee.ote.message/src/org/eclipse/osee/ote/message/elements/nonmapping/NonMappingSignedInteger16Element.java b/plugins/org.eclipse.osee.ote.message/src/org/eclipse/osee/ote/message/elements/nonmapping/NonMappingSignedInteger16Element.java
index 4f0da58d036..cc60d899ec0 100644
--- a/plugins/org.eclipse.osee.ote.message/src/org/eclipse/osee/ote/message/elements/nonmapping/NonMappingSignedInteger16Element.java
+++ b/plugins/org.eclipse.osee.ote.message/src/org/eclipse/osee/ote/message/elements/nonmapping/NonMappingSignedInteger16Element.java
@@ -27,7 +27,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Copy constructor.
*
- * @param element
*/
public NonMappingSignedInteger16Element(SignedInteger16Element element) {
super(element.getMessage(), element.getElementName(), element.getMsgData(), element.getByteOffset(),
@@ -37,39 +36,14 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
}
}
- /**
- * @param message
- * @param elementName
- * @param messageData
- * @param byteOffset
- * @param msb
- * @param lsb
- */
public NonMappingSignedInteger16Element(Message<?, ?, ?> message, String elementName, MessageData messageData, int byteOffset, int msb, int lsb) {
super(message, elementName, messageData, byteOffset, msb, lsb);
}
- /**
- * @param message
- * @param elementName
- * @param messageData
- * @param bitOffset
- * @param bitLength
- */
public NonMappingSignedInteger16Element(Message<?, ?, ?> message, String elementName, MessageData messageData, int bitOffset, int bitLength) {
super(message, elementName, messageData, bitOffset, bitLength);
}
- /**
- * @param message
- * @param elementName
- * @param messageData
- * @param byteOffset
- * @param msb
- * @param lsb
- * @param originalLsb
- * @param originalMsb
- */
public NonMappingSignedInteger16Element(Message<?, ?, ?> message, String elementName, MessageData messageData, int byteOffset, int msb, int lsb, int originalLsb, int originalMsb) {
super(message, elementName, messageData, byteOffset, msb, lsb, originalLsb, originalMsb);
}
@@ -77,7 +51,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* 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
@@ -91,7 +64,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Verifies that the element is set to "value".
*
- * @param accessor
* @param value Expected value
* @return if the check passed
*/
@@ -103,7 +75,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Verifies that the element is set to "value".
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -122,7 +93,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value within the range specified. Assumes that both ends of the range are
* inclusive.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param maxValue The maximum value of the range.
* @return if the check passed
@@ -136,7 +106,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value within the range specified. Assumes that both ends of the range are
* inclusive.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -156,7 +125,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value within the range specified. Either end of the range can be set to be
* inclusive or not.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param minInclusive If the minumum value of the range is inclusive.
* @param maxValue The maximum value of the range.
@@ -172,7 +140,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value within the range specified. Either end of the range can be set to be
* inclusive or not.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -193,7 +160,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Verifies that the element is NOT set to "value".
*
- * @param accessor
* @param value value to test against
* @return if the check passed
*/
@@ -205,7 +171,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Verifies that the element is NOT set to "value".
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -224,7 +189,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value outside the range specified. Assumes that both ends of the range are
* inclusive. Therefore observed value may not equal either of the range values.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param maxValue The maximum value of the range.
* @return if the check passed
@@ -238,7 +202,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value outside the range specified. Assumes that both ends of the range are
* inclusive. Therefore observed value may not equal either of the range values.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -258,7 +221,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value outside the range specified. Either end of the range can be set to be
* inclusive or not.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param minInclusive If the minumum value of the range is inclusive. If true the actual value must not < and not =
* to the range value.
@@ -276,7 +238,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value outside the range specified. Either end of the range can be set to be
* inclusive or not.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -299,7 +260,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Verifies that the element is set to "value" within the number of "milliseconds" passed.
*
- * @param accessor
* @param value Expected value.
* @param milliseconds Number of milliseconds to wait for the element to equal the "value".
* @return If the check passed.
@@ -313,7 +273,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Verifies that the element is set to "value" within the number of "milliseconds" passed.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -333,7 +292,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* This function will verify that this signal is pulsed for 2 cycles.
*
- * @param accessor
* @param value The value to be checked
* @throws InterruptedException
*/
@@ -343,9 +301,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
}
/**
- * @param accessor
- * @param pulsedValue
- * @param nonPulsedValue
* @throws InterruptedException
*/
public void checkPulse(ITestAccessor accessor, int pulsedValue, int nonPulsedValue) throws InterruptedException {
@@ -353,10 +308,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
}
/**
- * @param accessor
- * @param checkGroup
- * @param pulsedValue
- * @param nonPulsedValue
* @throws InterruptedException
*/
public void checkPulse(ITestAccessor accessor, CheckGroup checkGroup, int pulsedValue, int nonPulsedValue) throws InterruptedException {
@@ -368,11 +319,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
}
/**
- * @param accessor
- * @param checkGroup
- * @param pulsedValue
- * @param nonPulsedValue
- * @param milliseconds
* @throws InterruptedException
*/
public void checkPulse(ITestAccessor accessor, CheckGroup checkGroup, int pulsedValue, int nonPulsedValue, int milliseconds) throws InterruptedException {
@@ -383,7 +329,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value within the range specified. Assumes that both ends of the range are
* inclusive.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param maxValue The maximum value of the range.
* @param milliseconds Number of milliseconds to wait for the element to be within the range.
@@ -399,7 +344,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value within the range specified. Assumes that both ends of the range are
* inclusive.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -421,7 +365,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value within the range specified. Either end of the range can be set to be
* inclusive or not.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param minInclusive If the minumum value of the range is inclusive.
* @param maxValue The maximum value of the range.
@@ -439,7 +382,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value within the range specified. Either end of the range can be set to be
* inclusive or not.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -463,7 +405,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to some value other than "value" within the number of "milliseconds" passed.
* Passes if at any point with in the time allowed, the elment is set to a value other than "value".
*
- * @param accessor
* @param value value to test against.
* @param milliseconds Number of milliseconds to wait for the element to equal the "value".
* @return If the check passed.
@@ -478,7 +419,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to some value other than "value" within the number of "milliseconds" passed.
* Passes if at any point with in the time allowed, the elment is set to a value other than "value".
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -499,7 +439,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value outside the range specified. Assumes that both ends of the range are
* inclusive.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param maxValue The maximum value of the range.
* @param milliseconds Number of milliseconds to wait for the element to be outside the range.
@@ -515,7 +454,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value outside the range specified. Assumes that both ends of the range are
* inclusive.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -537,7 +475,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value outside the range specified. Either end of the range can be set to be
* inclusive or not.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param minInclusive If the minumum value of the range is inclusive. If true the actual value must not < and not =
* to the range value.
@@ -557,7 +494,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value outside the range specified. Either end of the range can be set to be
* inclusive or not.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -583,9 +519,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to the "value" passed for the entire time passed into "milliseconds". Returns
* value found that caused failure or last value observed if time expires.
*
- * @param accessor
- * @param value
- * @param milliseconds
* @return last value observed. Either value expected or value found at timeout.
* @throws InterruptedException
*/
@@ -598,15 +531,12 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to the "value" passed for the entire time passed into "milliseconds". Returns
* value found that caused failure or last value observed if time expires.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
* <p>
* If an outside method is not going to log the check then a <b>null </b> reference should be passed and this method
* will log the test point.
- * @param value
- * @param milliseconds
* @return last value observed. Either value expected or value found at timeout.
* @throws InterruptedException
*/
@@ -619,9 +549,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to the "value" passed for the entire time passed into "milliseconds". Returns
* value found that caused failure or last value observed if time expires.
*
- * @param accessor
- * @param value
- * @param milliseconds
* @return last value observed
* @throws InterruptedException
*/
@@ -634,15 +561,12 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to the "value" passed for the entire time passed into "milliseconds". Returns
* value found that caused failure or last value observed if time expires.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
* <p>
* If an outside method is not going to log the check then a <b>null </b> reference should be passed and this method
* will log the test point.
- * @param value
- * @param milliseconds
* @return last value observed
* @throws InterruptedException
*/
@@ -655,7 +579,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value within the range specified for the entire time specified. Assumes
* range is inclusive.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -676,7 +599,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Verifies that the element is set to a value within the range specified for the entire time specified.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -700,7 +622,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value within the range specified for the entire time specified. Assumes
* range is inclusive.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param maxValue The maximum value of the range.
* @param milliseconds Number of milliseconds to wait before failing.
@@ -715,7 +636,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Verifies that the element is set to a value within the range specified for the entire time specified.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param minInclusive If the minumum value of the range is inclusive.
* @param maxValue The maximum value of the range.
@@ -733,8 +653,7 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
// * Verifies that the element is set to a value within the range specified for the entire time
// specified. Assumes range is inclusive.
// *
- // * @param accessor
- // * @param minValue The minimum value of the range.
+ // // * @param minValue The minimum value of the range.
// * @param maxValue The maximum value of the range.
// * @param milliseconds Number of milliseconds to wait before failing.
// * @return last value observed
@@ -749,8 +668,7 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
// * Verifies that the element is set to a value within the range specified for the entire time
// specified.
// *
- // * @param accessor
- // * @param minValue The minimum value of the range.
+ // // * @param minValue The minimum value of the range.
// * @param minInclusive If the minumum value of the range is inclusive.
// * @param maxValue The maximum value of the range.
// * @param maxInclusive If the maximum value of the range is inclusive.
@@ -769,7 +687,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
* Verifies that the element is set to a value within the range specified for the entire time specified. Assumes
* range is inclusive.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -790,7 +707,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Verifies that the element is set to a value within the range specified for the entire time specified.
*
- * @param accessor
* @param checkGroup If this check is part of a larger set of checks which another method is going to log then the
* reference to the CheckGroup must be passed and this method will add the result of the check to the group with out
* logging a point.
@@ -826,7 +742,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Sets the element to the "value" passed.
*
- * @param accessor
* @param value The value to set.
*/
public void set(ITestEnvironmentAccessor accessor, int value) {
@@ -841,7 +756,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Sets the element to the "value" passed.
*
- * @param accessor
* @param value The value to set.
*/
public void setNoLog(ITestEnvironmentAccessor accessor, int value) {
@@ -851,7 +765,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Waits until the element equals the "value" passed. Returns last value observed upon a timout.
*
- * @param accessor
* @param value The expected value to wait for.
* @param milliseconds Number of milliseconds to wait before failing.
* @return last value found. Either value expected or value found at timeout.
@@ -865,7 +778,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Waits until the element has a value other than the "value" passed. Returns last value observed upon a timout.
*
- * @param accessor
* @param value The expected value to wait for.
* @param milliseconds Number of milliseconds to wait before failing.
* @return last value observed
@@ -879,7 +791,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Waits until the element has a value within the range specified. Assumes the range is inclusive.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param maxValue The maximum value of the range.
* @param milliseconds Number of milliseconds to wait before failing.
@@ -895,7 +806,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Waits until the element has a value within the range specified. Either end of the range can be inclusive or not.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param minInclusive If the minumum value of the range is inclusive. If true the actual value must not < and not =
* to the range value.
@@ -915,7 +825,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Waits until the element has a value within the range specified. Range is assumes to be inclusive.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param maxValue The maximum value of the range.
* @param milliseconds Number of milliseconds to wait before failing.
@@ -931,7 +840,6 @@ public class NonMappingSignedInteger16Element extends IntegerElement {
/**
* Waits until the element has a value within the range specified. Either end of the range can be inclusive or not.
*
- * @param accessor
* @param minValue The minimum value of the range.
* @param minInclusive If the minumum value of the range is inclusive. If true the actual value must not < and not =
* to the range value.

Back to the top