01: package com.sun.xml.bind.v2.schemagen.xmlschema; 02: 03: import com.sun.xml.txw2.TypedXmlWriter; 04: import com.sun.xml.txw2.annotation.XmlElement; 05: 06: public interface SchemaTop extends Redefinable, TypedXmlWriter { 07: 08: @XmlElement 09: public TopLevelAttribute attribute(); 10: 11: @XmlElement 12: public TopLevelElement element(); 13: 14: }