# HG changeset patch # User Christian Humer # Date 1449072576 -3600 # Node ID 240bf5edb1721d1ed5355944261744563ea2866f # Parent 6b4d0b2f93f4aa5541f75c0f76c73793a9612ffe Migrate package.html to package-info.java. To fix problems in the javadoc tool. diff -r 6b4d0b2f93f4 -r 240bf5edb172 truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/package-info.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/package-info.java Wed Dec 02 17:09:36 2015 +0100 @@ -0,0 +1,73 @@ +/* + * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/* + @ApiInfo( + group="Test" + ) + */ + +/** + *

+ * This package contains basic tests of the Truffle API and serves at the same time as an + * introduction to the Truffle API for language implementors. Every test gives an example on how to + * use the construct explained in the class description. + *

+ * + *

+ * Truffle is a language implementation framework. A guest language method is represented as a tree + * of executable nodes. The framework provides mechanisms for those trees to call each other. + * Additionally it contains dedicated data structures for storing data local to a tree invocation. + *

+ * + *

+ * This introduction to Truffle contains items in the following recommended order: + * + *

+ */ +package com.oracle.truffle.api; + diff -r 6b4d0b2f93f4 -r 240bf5edb172 truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/package.html --- a/truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/package.html Wed Dec 02 16:24:09 2015 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,68 +0,0 @@ - - - -

- This package contains basic tests of the Truffle API and serves at the same time as an - introduction to the Truffle API for language implementors. Every test gives an example on how to - use the construct explained in the class description. -

- -

- Truffle is a language implementation framework. A guest language method is represented as a tree - of executable nodes. The framework provides mechanisms for those trees to call each other. - Additionally it contains dedicated data structures for storing data local to a tree invocation. -

- -

- This introduction to Truffle contains items in the following recommended order: - -

-