LeOp.java :  » Test-Coverage » Hansel » org » hansel » stack » Java Open Source

Java Open Source » Test Coverage » Hansel 
Hansel » org » hansel » stack » LeOp.java
package org.hansel.stack;

public class LeOp extends BinaryOperatorEntry {
 
    public LeOp(HanselValue op1,
                HanselValue op2) {
        super("<=", 5, op1, op2);
    }

    public HanselValue invert() {
        return new GtOp(getOperator1(),
                        getOperator2());
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.