01: package org.andromda.core.metafacade;
02:
03: /**
04: * Contains constants for use with metafacades.
05: * For example, the metafacade namespace separator <em>::</em>
06: * is contained within this class.
07: *
08: * @author Chad Brandon
09: */
10: public class MetafacadeConstants {
11: /**
12: * Used to separate the metafacade namespaces.
13: */
14: public static final String NAMESPACE_SCOPE_OPERATOR = "::";
15:
16: /**
17: * The suffix for the metafacade implementation classes (each metafacade
18: * implementation class ends with this string).
19: */
20: public static final String METAFACADE_IMPLEMENTATION_SUFFIX = "Impl";
21: }
|