//Christian Tirella //Brian Sweeney //CSU670 Project //A container type for rows in truth tables, relation tables, candidate table import java.util.*; public class TruthRow { ArrayList row = new ArrayList (3); //constructor public TruthRow (int one, int two, int three) { row.add(one); row.add(two); row.add(three); } //get the bit at the specified place public Integer bitAt(int place) { return row.get(place - 1); } }