I have multiple cases in a switch that do the same thing, like so: (this is written in Java)
case 1: aMethod(); break; case 2: aMethod(); b
Sure, you can allow case clause sections for 1 & 2 to 'fall through' to clause 3 and then break out of the switch statement after that:
case
break
switch
case 1: case 2: case 3: aMethod(); break; case 4: anotherMethod(); break;