com.sun.tools.xjc.ModelLoader Java Examples
The following examples show how to use
com.sun.tools.xjc.ModelLoader.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JsonixPluginTest.java From jsonix-schema-compiler with BSD 2-Clause "Simplified" License | 6 votes |
@Test public void compilesOWS_V_1_1_0() throws Exception { new File("target/generated-sources/ows-v_1_1_0").mkdirs(); URL schema = getClass().getResource("/ogc/ows/1.1.0/owsAll.xsd"); URL binding = getClass().getResource("/ogc/ows-v_1_1_0.xjb"); final String[] arguments = new String[] { "-xmlschema", schema.toExternalForm(), "-b", binding.toExternalForm(), "-d", "target/generated-sources/ows-v_1_1_0", "-extension", "-Xjsonix" }; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #2
Source File: MModelInfoLoader.java From jsonix-schema-compiler with BSD 2-Clause "Simplified" License | 6 votes |
public MModelInfo<NType, NClass> loadModel(String resource) throws Exception { System.setProperty("javax.xml.accessExternalSchema", "all"); new File("target/generated-sources/" + resource).mkdirs(); final String[] arguments = new String[] { "-xmlschema", getClass().getResource("/" + resource).toExternalForm(), "-d", "target/generated-sources/" + resource, "-extension", "-Xjsonix", "-Xjsonix-generateJsonSchema" }; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); final MModelInfo<NType, NClass> modelInfo = new XJCCMInfoFactory(model) .createModel(); return modelInfo; }
Example #3
Source File: RunPluginsForCustomer.java From jaxb2-basics with BSD 2-Clause "Simplified" License | 6 votes |
@Test public void compilesCustomer() throws Exception { new File("target/generated-sources/xjc").mkdirs(); URL schema = getClass().getResource("/customer.xsd"); URL binding = getClass().getResource("/customer.xjb"); final String[] arguments = new String[] { "-xmlschema", schema.toExternalForm(), "-b", binding.toExternalForm(), "-d", "target/generated-sources/xjc", "-extension", "-XsimpleHashCode", // "-XsimpleEquals", "-XsimpleToString" }; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #4
Source File: RunPluginsForMain.java From jaxb2-basics with BSD 2-Clause "Simplified" License | 6 votes |
@Test public void compilesSchema() throws Exception { new File("target/generated-sources/xjc").mkdirs(); URL schema = getClass().getResource("/main.xsd"); URL binding = getClass().getResource("/main.xjb"); final String[] arguments = new String[] { "-xmlschema", schema.toExternalForm(), "-b", binding.toExternalForm(), "-d", "target/generated-sources/xjc", "-extension", "-XsimpleHashCode", // "-XsimpleEquals", "-XsimpleToString" }; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #5
Source File: RunPluginsForCases.java From jaxb2-basics with BSD 2-Clause "Simplified" License | 6 votes |
@Test public void compilesSchema() throws Exception { new File("target/generated-sources/xjc").mkdirs(); URL schema = getClass().getResource("/cases.xsd"); // URL binding = getClass().getResource("/cases.xjb"); final String[] arguments = new String[] { "-xmlschema", schema.toExternalForm(), // "-b", binding.toExternalForm(), "-d", "target/generated-sources/xjc", "-extension", "-XsimpleHashCode", "-XsimpleEquals", // "-XsimpleToString" }; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #6
Source File: RunSimplifyPlugin.java From jaxb2-basics with BSD 2-Clause "Simplified" License | 6 votes |
@Test public void compilesSchema() throws Exception { new File("target/generated-sources/xjc").mkdirs(); URL schema = getClass().getResource("/schema.xsd"); URL binding = getClass().getResource("/binding.xjb"); final String[] arguments = new String[] { "-xmlschema", schema.toExternalForm(), "-b", binding.toExternalForm(), "-d", "target/generated-sources/xjc", "-extension", "-Xsimplify", "-Xsimplify-usePluralForm=true"}; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #7
Source File: ExecuteJAXB1058.java From jaxb2-basics with BSD 2-Clause "Simplified" License | 6 votes |
@Test public void compilesContext_V_1_1_0() throws Exception { new File("target/generated-sources/xjc").mkdirs(); final String[] arguments = new String[] { "-xmlschema", new File("src/main/resources/schema.xsd").toURI().toString(), "-d", "target/generated-sources/xjc", "-XfixJAXB1058", "-extension", "-XtoString", "-Xequals", "-XhashCode", "-Xcopyable", "-Xmergeable"}; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #8
Source File: RunSimplifyPlugin.java From jaxb2-basics with BSD 2-Clause "Simplified" License | 6 votes |
@Test public void compilesSchema() throws Exception { new File("target/generated-sources/xjc").mkdirs(); URL schema = getClass().getResource("/schema.xsd"); URL binding = getClass().getResource("/bindings.xjb"); final String[] arguments = new String[] { "-xmlschema", schema.toExternalForm(), "-b", binding.toExternalForm(), "-d", "target/generated-sources/xjc", "-extension", "-Xsimplify", "-Xsimplify-usePluralForm=true"}; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #9
Source File: RunPlugins.java From jaxb2-basics with BSD 2-Clause "Simplified" License | 6 votes |
@Test public void compilesSchema() throws Exception { new File("target/generated-sources/xjc").mkdirs(); URL schema = getClass().getResource("/schema.xsd"); URL binding = getClass().getResource("/binding.xjb"); final String[] arguments = new String[] { "-xmlschema", schema.toExternalForm(), "-b", binding.toExternalForm(), "-d", "target/generated-sources/xjc", "-extension", "-XtoString", "-Xequals", "-XhashCode", "-Xcopyable", "-Xmergeable" }; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #10
Source File: JsonixPluginZeroTest.java From jsonix-schema-compiler with BSD 2-Clause "Simplified" License | 6 votes |
@Test public void compilesBasicZero() throws Exception { new File("target/generated-sources/basic/zero").mkdirs(); final String[] arguments = new String[] { "-xmlschema", getClass().getResource("/basic/zero/schema.xsd") .toExternalForm(), "-d", "target/generated-sources/basic/zero", "-extension", "-Xjsonix", "-Xjsonix-generateJsonSchema" }; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #11
Source File: JsonixPluginTest.java From jsonix-schema-compiler with BSD 2-Clause "Simplified" License | 6 votes |
@Test public void compilesContext_V_1_1_0() throws Exception { new File("target/generated-sources/context-v_1_1_0").mkdirs(); final String[] arguments = new String[] { "-xmlschema", getClass().getResource("/ogc/context/1.1.0/wmcAll.xsd") .toExternalForm(), "-b", getClass().getResource("/ogc/context-v_1_1_0.xjb") .toExternalForm(), "-d", "target/generated-sources/context-v_1_1_0", "-extension", "-Xjsonix" }; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #12
Source File: CompileIssues.java From jsonix-schema-compiler with BSD 2-Clause "Simplified" License | 6 votes |
@Test public void compilesIssues() throws Exception { new File("target/generated-sources/xjc").mkdirs(); URL schema = getClass().getResource("/schema.xsd"); URL binding = getClass().getResource("/binding.xjb"); final String[] arguments = new String[] { "-xmlschema", schema.toExternalForm(), "-b", binding.toExternalForm(), "-d", "target/generated-sources/xjc", "-extension", "-Xjsonix", "-Xjsonix-generateJsonSchema" }; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #13
Source File: JsonixPluginTest.java From jsonix-schema-compiler with BSD 2-Clause "Simplified" License | 6 votes |
@Test public void compilesWFS_V_2_0() throws Exception { new File("target/generated-sources/wfs-v_2_0").mkdirs(); URL schema = getClass().getResource("/ogc/wfs/2.0/wfs.xsd"); URL binding = getClass().getResource("/ogc/wfs-v_2_0.xjb"); final String[] arguments = new String[] { "-xmlschema", schema.toExternalForm(), "-b", binding.toExternalForm(), "-d", "target/generated-sources/wfs-v_2_0", "-extension", "-Xjsonix" }; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #14
Source File: AlphaMInfoFactoryTest.java From jaxb2-basics with BSD 2-Clause "Simplified" License | 5 votes |
@BeforeClass public static void createModel() throws BadCommandLineException, IOException { final String generateDirectory = "target/generated-sources/" + AlphaMInfoFactoryTest.class.getPackage().getName(); new File(generateDirectory).mkdirs(); final URL schema = AlphaMInfoFactoryTest.class .getResource("schema.xsd"); final URL binding = AlphaMInfoFactoryTest.class .getResource("binding.xjb"); final String[] arguments = new String[] { "-xmlschema", schema.toExternalForm(), "-b", binding.toExternalForm(), "-d", generateDirectory, "-extension" }; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); Assert.assertNotNull(model); final XJCCMInfoFactory factory = new XJCCMInfoFactory(model); AlphaMInfoFactoryTest.MODEL_INFO = factory.createModel(); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #15
Source File: XJC20Mojo.java From maven-jaxb2-plugin with BSD 2-Clause "Simplified" License | 5 votes |
protected Model loadModel(Options options) throws MojoExecutionException { if (getVerbose()) { getLog().info("Parsing input schema(s)..."); } final Model model = ModelLoader.load(options, new JCodeModel(), new LoggingErrorReceiver("Error while parsing schema(s).", getLog(), getVerbose())); if (model == null) throw new MojoExecutionException( "Unable to parse input schema(s). Error messages should have been provided."); return model; }
Example #16
Source File: XJC22Mojo.java From maven-jaxb2-plugin with BSD 2-Clause "Simplified" License | 5 votes |
protected Model loadModel(Options options) throws MojoExecutionException { if (getVerbose()) { getLog().info("Parsing input schema(s)..."); } final Model model = ModelLoader.load(options, new JCodeModel(), new LoggingErrorReceiver("Error while parsing schema(s).", getLog(), getVerbose())); if (model == null) throw new MojoExecutionException( "Unable to parse input schema(s). Error messages should have been provided."); return model; }
Example #17
Source File: XJC23Mojo.java From maven-jaxb2-plugin with BSD 2-Clause "Simplified" License | 5 votes |
protected Model loadModel(Options options) throws MojoExecutionException { if (getVerbose()) { getLog().info("Parsing input schema(s)..."); } final Model model = ModelLoader.load(options, new JCodeModel(), new LoggingErrorReceiver("Error while parsing schema(s).", getLog(), getVerbose())); if (model == null) throw new MojoExecutionException( "Unable to parse input schema(s). Error messages should have been provided."); return model; }
Example #18
Source File: XJC21Mojo.java From maven-jaxb2-plugin with BSD 2-Clause "Simplified" License | 5 votes |
protected Model loadModel(Options options) throws MojoExecutionException { if (getVerbose()) { getLog().info("Parsing input schema(s)..."); } final Model model = ModelLoader.load(options, new JCodeModel(), new LoggingErrorReceiver("Error while parsing schema(s).", getLog(), getVerbose())); if (model == null) throw new MojoExecutionException( "Unable to parse input schema(s). Error messages should have been provided."); return model; }
Example #19
Source File: SchemaCompilerEx.java From mwsc with MIT License | 4 votes |
public JAXBModelImpl bind() { // this has been problematic. turn it off. // if(!forest.checkSchemaCorrectness(this)) // return null; // parse all the binding files given via XJC -b options. // this also takes care of the binding files given in the -episode option. for (InputSource is : opts.getBindFiles()) parseSchema(is); // internalization SCDBasedBindingSet scdBasedBindingSet = forest.transform(opts.isExtensionMode()); if(!NO_CORRECTNESS_CHECK) { // correctness check SchemaFactory sf = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); sf.setErrorHandler(new DowngradingErrorHandler(this)); forest.weakSchemaCorrectnessCheck(sf); if(hadError) return null; // error in the correctness check. abort now } JCodeModel codeModel = new JCodeModel(); ModelLoader gl = new ModelLoader(opts,codeModel,this); try { XSSchemaSet result = gl.createXSOM(forest, scdBasedBindingSet); if(result==null) return null; // we need info about each field, so we go ahead and generate the // skeleton at this point. // REVISIT: we should separate FieldRenderer and FieldAccessor // so that accessors can be used before we build the code. Model model = gl.annotateXMLSchema(result); if(model==null) return null; if(hadError) return null; // if we have any error by now, abort context = model.generateCode(opts,this); if(context==null) return null; if(hadError) return null; return new JAXBModelImpl(context); } catch( SAXException e ) { // since XSOM uses our parser that scans DOM, // no parser error is possible. // all the other errors will be directed to ErrorReceiver // before it's thrown, so when the exception is thrown // the error should have already been reported. // thus ignore. return null; } }
Example #20
Source File: GenerateWithJaxbApi.java From java-9-wtf with Apache License 2.0 | 4 votes |
private void execute(String configuration) throws Exception { Options options = createOptions(configuration); Model model = ModelLoader.load(options, new JCodeModel(), ERROR_RECEIVER); Outline outline = model.generateCode(model.options, ERROR_RECEIVER); writeCode(outline); }
Example #21
Source File: JsonixMain.java From jsonix-schema-compiler with BSD 2-Clause "Simplified" License | 4 votes |
private void execute() { final ErrorReceiver errorHandler = new ConsoleErrorReporter(); final Model model = ModelLoader.load(getOptions(), new JCodeModel(), errorHandler); final File targetDirectory = getOptions().targetDir; final ProgramWriter<NType, NClass> programWriter = new TargetDirectoryProgramWriter( targetDirectory, errorHandler); final JsonStructureWriter<NType, NClass> jsonStructureWriter = new TargetDirectoryJsonStructureWriter( targetDirectory, errorHandler); new JsonixInvoker().execute(settings, model, programWriter, jsonStructureWriter); }
Example #22
Source File: DynamicCompiler.java From hyperjaxb3 with BSD 2-Clause "Simplified" License | 4 votes |
protected void execute(final Options options, final JCodeModel codeModel, final CodeWriter codeWriter, final ErrorReceiver errorReceiver) throws IOException { logger.debug("Loading the model."); final Model model = ModelLoader.load(options, codeModel, errorReceiver); logger.debug("Generating the code."); final Outline outline = model.generateCode(options, errorReceiver); logger.debug("Writing the code."); model.codeModel.build(codeWriter); this.outline = outline; final StringBuffer contextPathStringBuffer = new StringBuffer(); String delimiter = ""; for (final PackageOutline packageOutline : this.outline .getAllPackageContexts()) { contextPathStringBuffer.append(delimiter); contextPathStringBuffer.append(packageOutline._package().name()); delimiter = ":"; } this.contextPath = contextPathStringBuffer.toString(); logger.debug("Compiling the code."); final JavaCompiler systemJavaCompiler = ToolProvider .getSystemJavaCompiler(); final DiagnosticCollector<JavaFileObject> diagnostics = new DiagnosticCollector<JavaFileObject>(); final StandardJavaFileManager standardFileManager = systemJavaCompiler .getStandardFileManager(diagnostics, null, null); final Collection<File> javaFiles = FileUtils.listFiles(targetDirectory, FileFilterUtils.suffixFileFilter(".java"), TrueFileFilter.INSTANCE); final Iterable<? extends JavaFileObject> fileObjects = standardFileManager .getJavaFileObjectsFromFiles(javaFiles); ClassLoader contextClassLoader = Thread.currentThread() .getContextClassLoader(); final List<String> compilerOptions = new LinkedList<String>(); if (contextClassLoader instanceof URLClassLoader) { final URLClassLoader urlClassLoader = (URLClassLoader) contextClassLoader; final URL[] urls = urlClassLoader.getURLs(); if (urls.length > 0) { compilerOptions.add("-classpath"); final StringBuffer classpathStringBuffer = new StringBuffer(); String separator = ""; for (final URL url : urls) { logger.debug("URL:" + url); classpathStringBuffer.append(separator); try { classpathStringBuffer. // append("\""). append(new File(url.toURI()).getAbsolutePath()) // .append("\"") ; separator = SystemUtils.PATH_SEPARATOR; } catch (URISyntaxException ignored) { } } compilerOptions.add(classpathStringBuffer.toString()); } } compilerOptions.add("-verbose"); compilerOptions.add("-d"); compilerOptions.add(targetDirectory.getAbsolutePath()); logger.debug("Compiler options:" + StringUtils.join(compilerOptions.iterator(), " ")); // // conte // // final String[] compilerOptions = new String[] { "-d", // targetDirectory.getAbsolutePath(), "-verbose" }; systemJavaCompiler.getTask(null, standardFileManager, null, compilerOptions, null, fileObjects).call(); standardFileManager.close(); }
Example #23
Source File: RunPlugins.java From jaxb2-basics with BSD 2-Clause "Simplified" License | 4 votes |
@Test public void compilesSchema() throws Exception { new File("target/generated-sources/xjc").mkdirs(); URL schema = getClass().getResource("/schema.xsd"); URL binding = getClass().getResource("/binding.xjb"); final String[] arguments = new String[] { // "-xmlschema", schema.toExternalForm(), // "-b", binding.toExternalForm(), // "-d", "target/generated-sources/xjc", // "-extension", // "-XhashCode", // "-Xequals", // "-XtoString", // "-Xcopyable", // "-Xmergeable", // "-Xinheritance", // "-Xsetters", // "-Xsetters-mode=direct", // "-Xwildcard", // "-XenumValue" // "-XsimpleToString" }; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); model.generateCode(options, receiver); com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); model.codeModel.build(cw); }
Example #24
Source File: GH26Test.java From jaxb2-basics with BSD 2-Clause "Simplified" License | 4 votes |
@Test public void compilesSchema() throws Exception { new File("target/generated-sources/xjc").mkdirs(); URL schema = getClass().getResource("/schema.xsd"); URL binding = getClass().getResource("/binding.xjb"); final String[] arguments = new String[] { "-xmlschema", schema.toExternalForm(), "-b", binding.toExternalForm(), "-d", "target/generated-sources/xjc", "-extension", "-XhashCode", "-Xequals", "-XtoString", "-Xcopyable", "-Xmergeable", "-Xinheritance", "-Xsetters", "-Xsetters-mode=direct", "-Xwildcard", "-XenumValue" // "-XsimpleToString" }; Options options = new Options(); options.parseArguments(arguments); ConsoleErrorReporter receiver = new ConsoleErrorReporter(); Model model = ModelLoader.load(options, new JCodeModel(), receiver); final XJCCMInfoFactory factory = new XJCCMInfoFactory(model); final MModelInfo<NType, NClass> mmodel = factory.createModel(); final MClassInfo<NType, NClass> classInfo = mmodel .getClassInfo("org.jvnet.jaxb2_commons.tests.issues.IssueGH26Type"); Assert.assertNotNull(classInfo); final MElementPropertyInfo<NType, NClass> a = (MElementPropertyInfo<NType, NClass>) classInfo .getProperty("a"); Assert.assertEquals("a", a.getDefaultValue()); Assert.assertNotNull(a.getDefaultValueNamespaceContext()); final MElementsPropertyInfo<NType, NClass> bOrC = (MElementsPropertyInfo<NType, NClass>) classInfo .getProperty("bOrC"); // Assert.assertEquals("b", bOrC.getElementTypeInfos().get(0).getDefaultValue()); Assert.assertNotNull(bOrC.getElementTypeInfos().get(0).getDefaultValueNamespaceContext()); // Assert.assertEquals("3", bOrC.getElementTypeInfos().get(1).getDefaultValue()); Assert.assertNotNull(bOrC.getElementTypeInfos().get(1).getDefaultValueNamespaceContext()); final MElementRefsPropertyInfo<NType, NClass> dOrE = (MElementRefsPropertyInfo<NType, NClass>) classInfo .getProperty("dOrE"); // Assert.assertEquals("e", dOrE.getElementTypeInfos().get(0).getDefaultValue()); Assert.assertNotNull(dOrE.getElementTypeInfos().get(0).getDefaultValueNamespaceContext()); // Assert.assertEquals("d", dOrE.getElementTypeInfos().get(1).getDefaultValue()); Assert.assertNotNull(dOrE.getElementTypeInfos().get(1).getDefaultValueNamespaceContext()); final MAttributePropertyInfo<NType, NClass> z = (MAttributePropertyInfo<NType, NClass>) classInfo .getProperty("z"); Assert.assertEquals("z", z.getDefaultValue()); Assert.assertNotNull(z.getDefaultValueNamespaceContext()); // model.generateCode(options, receiver); // com.sun.codemodel.CodeWriter cw = options.createCodeWriter(); // model.codeModel.build(cw); }