// tjhBucket.java import tjhCell; /** simple structure for each bucket in our space-partioning data type */ public class tjhBucket { //-------------------------------------------------------------------------------- // data //-------------------------------------------------------------------------------- /** does this bucket currently contain a cell? */ public boolean has_cell; /** if so, this stores a reference to it */ public tjhCell cell; }