Issue #1456 Added DualList.setSelectedList(ArrayList<String>).

Change-Id: I86765b965f90bf714ede8707c516287a91c64de7

Former-commit-id: 93a8ff836d [formerly 945d6be2c8] [formerly cf3a7e1455] [formerly 93a8ff836d [formerly 945d6be2c8] [formerly cf3a7e1455] [formerly e457297ceb [formerly cf3a7e1455 [formerly 334782a0f7df272200196a3905d656d2fa3603d7]]]]
Former-commit-id: e457297ceb
Former-commit-id: 7b415a5579 [formerly 66a5a6d5bc] [formerly 34e0b77eeea413ef36589a273ae0f9b42999caa0 [formerly 7b0dc0478d]]
Former-commit-id: 9ab9c45bd74ba24f58bdf9295ea655363ad64d32 [formerly a0a9a3027e]
Former-commit-id: 9fcb9f9179
This commit is contained in:
Brad Gonzales 2013-01-07 12:05:55 -06:00
parent e7fe420377
commit 1eac481c4a

View file

@ -55,6 +55,7 @@ import com.raytheon.viz.ui.widgets.duallist.ButtonImages.ButtonImage;
* Aug 10, 2012 1002 mpduff Fixed sorting of numeric data on move left.
* Sep 07, 2012 684 mpduff Deselect selection prior to selecting new items.
* Dec 17, 2012 1431 mpduff Fix filter problem when deselecting items.
* Jan 07, 2013 1456 bgonzale Added setSelectedList(ArrayList<String>).
*
* </pre>
*
@ -437,6 +438,17 @@ public class DualList extends Composite {
});
}
/**
* Set SelectedList.
*
* @param selectedList
* all users listed in notification table
*/
public void setSelectedList(ArrayList<String> selectedList) {
config.setSelectedList(selectedList);
populateLists();
}
/**
* Set FullList.
*