899N/A/*
3660N/A * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
899N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
899N/A *
899N/A * This code is free software; you can redistribute it and/or modify it
899N/A * under the terms of the GNU General Public License version 2 only, as
899N/A * published by the Free Software Foundation. Oracle designates this
899N/A * particular file as subject to the "Classpath" exception as provided
899N/A * by Oracle in the LICENSE file that accompanied this code.
899N/A *
899N/A * This code is distributed in the hope that it will be useful, but WITHOUT
899N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
899N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
899N/A * version 2 for more details (a copy is included in the LICENSE file that
899N/A * accompanied this code).
899N/A *
899N/A * You should have received a copy of the GNU General Public License version
899N/A * 2 along with this work; if not, write to the Free Software Foundation,
2362N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2362N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
899N/A * or visit www.oracle.com if you need additional information or have any
899N/A * questions.
899N/A */
899N/A/*
899N/A * Copyright (C) 2004-2011
899N/A *
899N/A * Permission is hereby granted, free of charge, to any person obtaining a copy
899N/A * of this software and associated documentation files (the "Software"), to deal
899N/A * in the Software without restriction, including without limitation the rights
3660N/A * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3660N/A * copies of the Software, and to permit persons to whom the Software is
899N/A * furnished to do so, subject to the following conditions:
899N/A *
899N/A * The above copyright notice and this permission notice shall be included in
899N/A * all copies or substantial portions of the Software.
899N/A *
899N/A * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
899N/A * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
899N/A * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
899N/A * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
899N/A * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
899N/A * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
899N/A * THE SOFTWARE.
899N/A */
899N/Apackage com.sun.xml.internal.rngom.digested;
899N/A
899N/Aimport com.sun.xml.internal.rngom.ast.builder.CommentList;
899N/Aimport com.sun.xml.internal.rngom.ast.builder.BuildException;
899N/Aimport com.sun.xml.internal.rngom.ast.util.LocatorImpl;
3660N/A
3660N/A/**
3660N/A * @author Kohsuke Kawaguchi (kk@kohsuke.org)
3660N/A */
899N/Afinal class CommentListImpl implements CommentList<LocatorImpl> {
899N/A public void addComment(String value, LocatorImpl loc) throws BuildException {
3660N/A // TODO
3660N/A }
3660N/A}
3660N/A