View Javadoc
1   package com.guinetik.hexafun;
2   
3   import java.util.Set;
4   
5   /**
6    * Default implementation of HexaApp.
7    */
8   public  class HexaAppImpl extends HexaApp {
9   
10      /**
11       * Create a new empty HexaAppImpl.
12       */
13      public HexaAppImpl() {
14          // Uses the parent's maps
15      }
16  
17      @Override
18      public Set<String> registeredUseCases() {
19          return useCases.keySet();
20      }
21  }