// ******************************************* import EDU.neu.ccs.demeter.*; class Nonempty_Block_List { protected Block it; public Block get_it() { return it; } public void set_it(Block new_it) { it = new_it; } protected Nonempty_Block_List next; public Nonempty_Block_List get_next() { return next; } public void set_next(Nonempty_Block_List new_next) { next = new_next; } public Nonempty_Block_List() { super(); } public Nonempty_Block_List(Block it, Nonempty_Block_List next) { super(); set_it(it); set_next(next); } }