activity = new MultiAssetActivity( place, clientFactory );
}
private List<MultiViewRow> createMultiViewRows() {
List<MultiViewRow> multiViewRows = new ArrayList<MultiViewRow>();
multiViewRows.add( new MultiViewRow( "firstUuid", "firstName", "firstFormat" ) );
multiViewRows.add( new MultiViewRow( "secondUuid", "secondName", "secondFormat" ) );
multiViewRows.add( new MultiViewRow( "thirdUuid", "thirdName", "thirdFormat" ) );
return multiViewRows;
}