boot/src/test/java/org/netbeans/html/boot/impl/Object.java
author Jaroslav Tulach <jtulach@netbeans.org>
Fri, 15 Jan 2016 11:41:37 +0100
changeset 1042 e633fed12064
permissions -rw-r--r--
Make sure the generated code uses fully qualified names when referencing java.lang.Object
jtulach@1042
     1
/**
jtulach@1042
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
jtulach@1042
     3
 *
jtulach@1042
     4
 * Copyright 2013-2014 Oracle and/or its affiliates. All rights reserved.
jtulach@1042
     5
 *
jtulach@1042
     6
 * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
jtulach@1042
     7
 * Other names may be trademarks of their respective owners.
jtulach@1042
     8
 *
jtulach@1042
     9
 * The contents of this file are subject to the terms of either the GNU
jtulach@1042
    10
 * General Public License Version 2 only ("GPL") or the Common
jtulach@1042
    11
 * Development and Distribution License("CDDL") (collectively, the
jtulach@1042
    12
 * "License"). You may not use this file except in compliance with the
jtulach@1042
    13
 * License. You can obtain a copy of the License at
jtulach@1042
    14
 * http://www.netbeans.org/cddl-gplv2.html
jtulach@1042
    15
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
jtulach@1042
    16
 * specific language governing permissions and limitations under the
jtulach@1042
    17
 * License.  When distributing the software, include this License Header
jtulach@1042
    18
 * Notice in each file and include the License file at
jtulach@1042
    19
 * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
jtulach@1042
    20
 * particular file as subject to the "Classpath" exception as provided
jtulach@1042
    21
 * by Oracle in the GPL Version 2 section of the License file that
jtulach@1042
    22
 * accompanied this code. If applicable, add the following below the
jtulach@1042
    23
 * License Header, with the fields enclosed by brackets [] replaced by
jtulach@1042
    24
 * your own identifying information:
jtulach@1042
    25
 * "Portions Copyrighted [year] [name of copyright owner]"
jtulach@1042
    26
 *
jtulach@1042
    27
 * Contributor(s):
jtulach@1042
    28
 *
jtulach@1042
    29
 * The Original Software is NetBeans. The Initial Developer of the Original
jtulach@1042
    30
 * Software is Oracle. Portions Copyright 2013-2014 Oracle. All Rights Reserved.
jtulach@1042
    31
 *
jtulach@1042
    32
 * If you wish your version of this file to be governed by only the CDDL
jtulach@1042
    33
 * or only the GPL Version 2, indicate your decision by adding
jtulach@1042
    34
 * "[Contributor] elects to include this software in this distribution
jtulach@1042
    35
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
jtulach@1042
    36
 * single choice of license, a recipient has the option to distribute
jtulach@1042
    37
 * your version of this file under either the CDDL, the GPL Version 2 or
jtulach@1042
    38
 * to extend the choice of license to its licensees as provided above.
jtulach@1042
    39
 * However, if you add GPL Version 2 code and therefore, elected the GPL
jtulach@1042
    40
 * Version 2 license, then the option applies only if the new code is
jtulach@1042
    41
 * made subject to such option by the copyright holder.
jtulach@1042
    42
 */
jtulach@1042
    43
package org.netbeans.html.boot.impl;
jtulach@1042
    44
jtulach@1042
    45
/** Fake class to cause confusion in the generated code and force it
jtulach@1042
    46
 * to use fully qualified names
jtulach@1042
    47
 */
jtulach@1042
    48
final class Object {
jtulach@1042
    49
}