'Eclipse format bracket switch and space

i'm searching in eclipse's formatting option but i cannot find anything relative to what i want. Basically i want turn this

switch (event)
        {
        case "32114-05.html":
            st.startQuest();
            break;
        case "32114-08.html":

into this

   switch(event)
   {
      case "32114-05.html":
      {
          st.startQuest();
          break;
      }
      case "32114-08.html":

But i cannot find the option.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source