001    /*
002     * $Id: PrintConversionEvent.java,v 1.1 2002/09/04 15:29:35 ryans Exp $
003     *
004     * Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
005     * 
006     * This software is the proprietary information of Sun Microsystems, Inc.  
007     * Use is subject to license terms.
008     * 
009     */
010    
011    package javax.xml.bind;
012    
013    /**
014     * This event indicates that a problem was encountered while converting data
015     * from the Java content tree into its lexical representation.
016     * 
017     * @author <ul><li>Ryan Shoemaker, Sun Microsystems, Inc.</li><li>Kohsuke Kawaguchi, Sun Microsystems, Inc.</li><li>Joe Fialli, Sun Microsystems, Inc.</li></ul> 
018     * @version $Revision: 1.1 $
019     * @see ValidationEvent
020     * @see ValidationEventHandler
021     * @see Marshaller
022     * @since JAXB1.0
023     */
024    public interface PrintConversionEvent extends ValidationEvent {
025    
026    }