Package com.jbidwatcher.auction.event

Examples of com.jbidwatcher.auction.event.EventStatus


    for(AuctionEntry entry : toDelete) {
      auctions.add(entry.getInteger("auction_id"));
      if(entry.isSniped()) snipes.add(entry.getSnipe());
    }

    boolean success = new EventStatus().deleteAllEntries(entries);
    if(!snipes.isEmpty()) success &= AuctionSnipe.deleteAll(snipes);
    success &= AuctionInfo.deleteAll(auctions);
    success &= getRealDatabase().deleteBy("id IN (" + entries + ")");

    return success;
View Full Code Here

TOP

Related Classes of com.jbidwatcher.auction.event.EventStatus

Copyright © 2018 www.massapicom. 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.