&& Float.compare(x.getVarOtherFloat(), y.getVarOtherFloat()) == 0
&& x.getVarOtherString().equals(y.getVarOtherString());
}
public void testSequenceWithGroupSeq() throws Exception {
SequenceWithGroupSeq x = new SequenceWithGroupSeq();
x.setVarInt(100);
x.setVarString("hello");
x.setVarFloat(1.1f);
x.setVarOtherInt(11);
x.setVarOtherString("world");
x.setVarOtherFloat(10.1f);
SequenceWithGroupSeq yOrig = new SequenceWithGroupSeq();
yOrig.setVarInt(11);
yOrig.setVarString("world");
yOrig.setVarFloat(10.1f);
yOrig.setVarOtherInt(100);
yOrig.setVarOtherString("hello");
yOrig.setVarOtherFloat(1.1f);
Holder<SequenceWithGroupSeq> y = new Holder<SequenceWithGroupSeq>(yOrig);
Holder<SequenceWithGroupSeq> z = new Holder<SequenceWithGroupSeq>();
SequenceWithGroupSeq ret;
if (testDocLiteral) {
ret = docClient.testSequenceWithGroupSeq(x, y, z);
} else if (testXMLBinding) {
ret = xmlClient.testSequenceWithGroupSeq(x, y, z);
} else {