View Javadoc

1   package org.andromda.cartridges.meta.metafacades;
2   
3   
4   /***
5    * Stores Globals specific to the meta cartridge metafacades.
6    *
7    * @author Chad Brandon
8    */
9   class MetaGlobals
10  {
11      /***
12       * The property used to specify the implementation operation name pattern (for the logic of attributes, association
13       * ends, and operations).
14       */
15      static final String PROPERTY_IMPLEMENTATION_OPERATION_NAME_PATTERN =
16          "implementationOperationNamePattern";
17  
18      /***
19       * The pattern used to create the generalization name (when using delegated inheritance).
20       */
21      static final String PROPERTY_GENERALIZATION_NAME_PATTERN = "generalizationNamePattern";
22  }