/* * Copyright (c) 1997, 2008, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.xml.txw2; /** * Comment. * * @author Kohsuke Kawaguchi */ final class Comment extends Content { /** * The text to be writtten. */ private final StringBuilder buffer = new StringBuilder(); public Comment(Document document, NamespaceResolver nsResolver, Object obj) { document.writeValue(obj,nsResolver,buffer); } boolean concludesPendingStartTag() { return false; } void accept(ContentVisitor visitor) { visitor.onComment(buffer); } }