else if (columnIndex == 1) {
boardLocation.setSide((Side) aValue);
fireTableCellUpdated(rowIndex, columnIndex);
}
else if (columnIndex == 2) {
LengthCellValue value = (LengthCellValue) aValue;
Length length = value.getLength();
Location location = boardLocation.getLocation();
location = Length.setLocationField(configuration, location, length, Length.Field.X);
boardLocation.setLocation(location);
}
else if (columnIndex == 3) {
LengthCellValue value = (LengthCellValue) aValue;
Length length = value.getLength();
Location location = boardLocation.getLocation();
location = Length.setLocationField(configuration, location, length, Length.Field.Y);
boardLocation.setLocation(location);
}
else if (columnIndex == 4) {
LengthCellValue value = (LengthCellValue) aValue;
Length length = value.getLength();
Location location = boardLocation.getLocation();
location = Length.setLocationField(configuration, location, length, Length.Field.Z);
boardLocation.setLocation(location);
}
else if (columnIndex == 5) {