LocalScoping.java revision 325
1821N/A/*
1821N/A * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
2362N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1821N/A *
1821N/A * This code is free software; you can redistribute it and/or modify it
1821N/A * under the terms of the GNU General Public License version 2 only, as
1821N/A * published by the Free Software Foundation. Oracle designates this
2362N/A * particular file as subject to the "Classpath" exception as provided
1821N/A * by Oracle in the LICENSE file that accompanied this code.
2362N/A *
1821N/A * This code is distributed in the hope that it will be useful, but WITHOUT
1821N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1821N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1821N/A * version 2 for more details (a copy is included in the LICENSE file that
1821N/A * accompanied this code).
1821N/A *
1821N/A * You should have received a copy of the GNU General Public License version
1821N/A * 2 along with this work; if not, write to the Free Software Foundation,
1821N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1821N/A *
1821N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
2362N/A */
1821N/A
1821N/Apackage com.sun.tools.internal.xjc.reader.xmlschema.bindinfo;
1821N/A
1821N/Aimport javax.xml.bind.annotation.XmlEnumValue;
1821N/A
1821N/A/**
1821N/A * @author Kohsuke Kawaguchi
1821N/A */
1821N/Apublic enum LocalScoping {
1821N/A @XmlEnumValue("nested")
1821N/A NESTED,
1821N/A @XmlEnumValue("toplevel")
1821N/A TOPLEVEL
1821N/A}
1821N/A