private void selectPartition() throws Exception {
List<Partition> partitions = UserFacade.getInstance().getPartitions();
if ((partitions.size() == 1) && !partitions.get(0).isUsed()) {
YesNo yesNo = new YesNo(context);
boolean create = yesNo.show("There is no partition. Would you like to create one ?");
if (create) {
selectedPartition = createPartition(partitions.get(0));
}
}