class WeightyItem { String toString() { return "WeightyItem: ${name}; value: ${value}; weight: ${weight}" } // ---- properties ------------------------- def name def value def description = '' def weight = 0 }