01: package org.andromda.core.metafacade;
02:
03: /**
04: * Stores the common metafacade namespace properties used throughout <strong>ANY </strong> set of metafacades (UML,
05: * etc).
06: *
07: * @author Chad Brandon
08: */
09: public class MetafacadeProperties {
10: /**
11: * Are we making use of the caching of metafacade properties (true/false).
12: */
13: public static final String ENABLE_METAFACADE_PROPERTY_CACHING = "enableMetafacadePropertyCaching";
14: }
|