You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
881 B
43 lines
881 B
/*
|
|
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE 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 <ul><li>Ryan Shoemaker, Sun Microsystems, Inc.</li><li>Kohsuke Kawaguchi, Sun Microsystems, Inc.</li><li>Joe Fialli, Sun Microsystems, Inc.</li></ul>
|
|
* @since JAXB1.0
|
|
*/
|
|
|
|
public interface Element {
|
|
}
|