module examples.cell; behavior MigrateCell{ void act(String args[]){ if (args.length != 2) { standardOutput<-println( "Usage: salsa examples.cell.MigrateCell " ); return; } Cell c = (Cell) Cell.getReferenceByName(new UAN(args[0])); c<-migrate(args[1]); } }