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