JResourceFile
).
13 | */
14 | package com.sun.codemodel.fmt;
15 |
--------------------------------------------------------------------------------
/jaxb-ri/codemodel/codemodel/src/main/java/module-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2017, 2021 Oracle and/or its affiliates. All rights reserved.
3 | *
4 | * This program and the accompanying materials are made available under the
5 | * terms of the Eclipse Distribution License v. 1.0, which is available at
6 | * http://www.eclipse.org/org/documents/edl-v10.php.
7 | *
8 | * SPDX-License-Identifier: BSD-3-Clause
9 | */
10 |
11 | /**
12 | * JAXB Library for code generation.
13 | *
14 | * @since 9
15 | */
16 | module com.sun.codemodel {
17 |
18 | exports com.sun.codemodel;
19 | exports com.sun.codemodel.util;
20 | exports com.sun.codemodel.writer;
21 | exports com.sun.codemodel.fmt;
22 | }
23 |
--------------------------------------------------------------------------------
/jaxb-ri/codemodel/codemodel/src/test/java/com/sun/codemodel/tests/JCodeModelTest.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
3 | *
4 | * This program and the accompanying materials are made available under the
5 | * terms of the Eclipse Distribution License v. 1.0, which is available at
6 | * http://www.eclipse.org/org/documents/edl-v10.php.
7 | *
8 | * SPDX-License-Identifier: BSD-3-Clause
9 | */
10 |
11 | package com.sun.codemodel.tests;
12 |
13 | import com.sun.codemodel.JCodeModel;
14 | import junit.framework.TestCase;
15 |
16 | /**
17 | * @author Kohsuke Kawaguchi
18 | */
19 | public class JCodeModelTest extends TestCase {
20 | public void testParseArray() throws Exception {
21 | JCodeModel cm = new JCodeModel();
22 | cm.parseType("java.util.ArrayList23 | See the following error messages for details: 24 |
25 | <%@ include file="statusMessage.jsp"%> 26 | 27 | 28 | -------------------------------------------------------------------------------- /jaxb-ri/tools/servlet/web/fileList.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | 3 | Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved. 4 | 5 | This program and the accompanying materials are made available under the 6 | terms of the Eclipse Distribution License v. 1.0, which is available at 7 | http://www.eclipse.org/org/documents/edl-v10.php. 8 | 9 | SPDX-License-Identifier: BSD-3-Clause 10 | 11 | --%> 12 | 13 | <%@ taglib prefix="xjc" uri="http://java.sun.com/xml/ns/jaxb/xjc/ontheweb" %> 14 | 15 | 16 | 17 |19 | -------------------------------------------------------------------------------- /jaxb-ri/tools/xmllint/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Main-Class: XmlLint 2 | -------------------------------------------------------------------------------- /jaxb-ri/txw/compiler/exclude-txwc2.xml: -------------------------------------------------------------------------------- 1 | 12 | 13 |14 | <%= 15 | ((com.sun.tools.xjc.servlet.Compiler) 16 | request.getSession().getAttribute("compiler")).getStatusMessages() 17 | %> 18 |
17 | * Code generation phase builds an outline little by little, while each step is using the outline built by the prior
18 | * steps.
19 | */
20 | package com.sun.tools.xjc.outline;
21 |
--------------------------------------------------------------------------------
/jaxb-ri/xjc/src/main/java/com/sun/tools/xjc/reader/dtd/bindinfo/BIConversion.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
3 | *
4 | * This program and the accompanying materials are made available under the
5 | * terms of the Eclipse Distribution License v. 1.0, which is available at
6 | * http://www.eclipse.org/org/documents/edl-v10.php.
7 | *
8 | * SPDX-License-Identifier: BSD-3-Clause
9 | */
10 |
11 | package com.sun.tools.xjc.reader.dtd.bindinfo;
12 |
13 | import com.sun.tools.xjc.model.TypeUse;
14 |
15 | /**
16 | * conversion declaration ({@code com.sun.xml.xsom
package.
13 | */
14 | package com.sun.xml.xsom.impl;
--------------------------------------------------------------------------------
/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/impl/parser/Patch.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
3 | *
4 | * This program and the accompanying materials are made available under the
5 | * terms of the Eclipse Distribution License v. 1.0, which is available at
6 | * http://www.eclipse.org/org/documents/edl-v10.php.
7 | *
8 | * SPDX-License-Identifier: BSD-3-Clause
9 | */
10 |
11 | package com.sun.xml.xsom.impl.parser;
12 |
13 | import org.xml.sax.SAXException;
14 |
15 | /**
16 | * Patch program that runs later to "fix" references among components.
17 | *
18 | * The only difference from the Runnable interface is that this interface
19 | * allows the program to throw a SAXException.
20 | */
21 | public interface Patch {
22 | void run() throws SAXException;
23 | }
24 |
25 |
--------------------------------------------------------------------------------
/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/impl/parser/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
3 | *
4 | * This program and the accompanying materials are made available under the
5 | * terms of the Eclipse Distribution License v. 1.0, which is available at
6 | * http://www.eclipse.org/org/documents/edl-v10.php.
7 | *
8 | * SPDX-License-Identifier: BSD-3-Clause
9 | */
10 |
11 | /**
12 | * Parser that reads XML Schema documents and builds an XSSchemaSet
object.
13 | */
14 | package com.sun.xml.xsom.impl.parser;
--------------------------------------------------------------------------------
/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
3 | *
4 | * This program and the accompanying materials are made available under the
5 | * terms of the Eclipse Distribution License v. 1.0, which is available at
6 | * http://www.eclipse.org/org/documents/edl-v10.php.
7 | *
8 | * SPDX-License-Identifier: BSD-3-Clause
9 | */
10 |
11 | /**
12 | * Interfaces that the client should use to access schema information.
13 | */
14 | package com.sun.xml.xsom;
--------------------------------------------------------------------------------
/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/parser/AnnotationParserFactory.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
3 | *
4 | * This program and the accompanying materials are made available under the
5 | * terms of the Eclipse Distribution License v. 1.0, which is available at
6 | * http://www.eclipse.org/org/documents/edl-v10.php.
7 | *
8 | * SPDX-License-Identifier: BSD-3-Clause
9 | */
10 |
11 | package com.sun.xml.xsom.parser;
12 |
13 | /**
14 | * Factory for {@link AnnotationParser}.
15 | *
16 | * @author Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
17 | */
18 | public interface AnnotationParserFactory {
19 | AnnotationParser create();
20 | }
21 |
22 |
--------------------------------------------------------------------------------
/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/parser/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
3 | *
4 | * This program and the accompanying materials are made available under the
5 | * terms of the Eclipse Distribution License v. 1.0, which is available at
6 | * http://www.eclipse.org/org/documents/edl-v10.php.
7 | *
8 | * SPDX-License-Identifier: BSD-3-Clause
9 | */
10 |
11 | /**
12 | * Classes to parse XML Schema documents into objects of com.sun.xml.xsom
package.
13 | */
14 | package com.sun.xml.xsom.parser;
--------------------------------------------------------------------------------
/jaxb-ri/xsom/src/main/java/com/sun/xml/xsom/visitor/XSWildcardFunction.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
3 | *
4 | * This program and the accompanying materials are made available under the
5 | * terms of the Eclipse Distribution License v. 1.0, which is available at
6 | * http://www.eclipse.org/org/documents/edl-v10.php.
7 | *
8 | * SPDX-License-Identifier: BSD-3-Clause
9 | */
10 |
11 | package com.sun.xml.xsom.visitor;
12 |
13 | import com.sun.xml.xsom.XSWildcard;
14 |
15 | /**
16 | * Visits three kinds of {@link XSWildcard}.
17 | *
18 | * @author
19 | * Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
20 | */
21 | public interface XSWildcardFunctioncom.sun.xml.xsom
interfaces.
13 | */
14 | package com.sun.xml.xsom.visitor;
--------------------------------------------------------------------------------
/jaxb-ri/xsom/src/main/resources/com/sun/xml/xsom/util/ContextClassloaderLocal.properties:
--------------------------------------------------------------------------------
1 | #
2 | # Copyright (c) 2014, 2021 Oracle and/or its affiliates. All rights reserved.
3 | #
4 | # This program and the accompanying materials are made available under the
5 | # terms of the Eclipse Distribution License v. 1.0, which is available at
6 | # http://www.eclipse.org/org/documents/edl-v10.php.
7 | #
8 | # SPDX-License-Identifier: BSD-3-Clause
9 | #
10 |
11 | FAILED_TO_CREATE_NEW_INSTANCE=Failed to create new instance of {0}
12 |
13 |
--------------------------------------------------------------------------------