JAXB.java
01 /*
02  * Java Genetic Algorithm Library (jenetics-3.7.0).
03  * Copyright (c) 2007-2016 Franz Wilhelmstötter
04  *
05  * Licensed under the Apache License, Version 2.0 (the "License");
06  * you may not use this file except in compliance with the License.
07  * You may obtain a copy of the License at
08  *
09  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * Author:
18  *    Franz Wilhelmstötter (franz.wilhelmstoetter@gmx.at)
19  */
20 package org.jenetics.tool;
21 
22 import java.io.File;
23 import java.io.IOException;
24 
25 import javax.xml.bind.SchemaOutputResolver;
26 import javax.xml.transform.Result;
27 import javax.xml.transform.stream.StreamResult;
28 
29 import org.jenetics.tool.trial.jaxb;
30 
31 /**
32  @author <a href="mailto:franz.wilhelmstoetter@gmx.at">Franz Wilhelmstötter</a>
33  @version 3.4
34  @since 3.4
35  */
36 public class JAXB {
37 
38     private static final class Resolver extends SchemaOutputResolver {
39 
40         @Override
41         public Result createOutput(
42             final String namespaceURI,
43             final String suggestedFileName
44         )
45             throws IOException
46         {
47             final File file = new File(suggestedFileName);
48             System.out.println(file);
49             StreamResult result = new StreamResult(file);
50             result.setSystemId(file.toURI().toURL().toString());
51             return result;
52         }
53 
54     }
55 
56     public static void main(final String[] argsthrows Exception {
57         final SchemaOutputResolver resolver = new Resolver();
58         jaxb.context().generateSchema(resolver);
59     }
60 
61 }