src.javax.xml.bind.Element Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache is an open source, standards-based cache used to boost performance,
offload the database and simplify scalability. Ehcache is robust, proven and full-featured and
this has made it the most widely-used Java-based cache.
/*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package javax.xml.bind;
/**
* This is an element marker interface.
*
* Under certain circumstances, it is necessary for the binding compiler to
* generate derived java content classes that implement this interface. In
* those cases, client applications must supply element instances rather than
* types of elements. For more detail, see section 5.7 "Element Declaration"
* and 5.7.1 "Bind to Java Element Interface" of the specification.
*
* @author - Ryan Shoemaker, Sun Microsystems, Inc.
- Kohsuke Kawaguchi, Sun Microsystems, Inc.
- Joe Fialli, Sun Microsystems, Inc.
* @since JAXB1.0
*/
public interface Element {
}