Package org.gnubridge.core.bidding.rules

Source Code of org.gnubridge.core.bidding.rules.AlwaysPass

package org.gnubridge.core.bidding.rules;

import org.gnubridge.core.bidding.Bid;
import org.gnubridge.core.bidding.Pass;

public class AlwaysPass extends BiddingRule {

  public AlwaysPass() {
    super(null, null);
  }

  @Override
  protected Bid prepareBid() {
    return new Pass();
  }

  @Override
  protected boolean applies() {
    return true;
  }

}
TOP

Related Classes of org.gnubridge.core.bidding.rules.AlwaysPass

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.