// --------------------------------------------------- // University of California Santa Barbara // Media Arts and Technology // MAT 259 | Visualizing Information | Winter 2011 // // Patrick Rudolph // Project 3 | Animation // // Item data structures // --------------------------------------------------- public class Item { boolean dewey; int deweyClass; public Item(boolean dewey, int deweyClass) { this.dewey = dewey; this.deweyClass = deweyClass; } }