01: package org.andromda.schema2xmi;
02:
03: /**
04: * Contains the Schema2XMI Global variables.
05: *
06: * @author Chad Brandon
07: */
08: class Schema2XMIGlobals {
09: /**
10: * The token used to seperate packages.
11: */
12: public static String PACKAGE_SEPERATOR = "::";
13:
14: /**
15: * The namespace of the NetBeans MDR repository.
16: */
17: public static String REPOSITORY_NAMESPACE_NETBEANSMDR = "netBeansMDR";
18: }
|