blob: 63bf60b93a67594145f2b5bf6b0bb690fedc7bda [file] [log] [blame]
package org.eclipse.jpt.jaxb.core.xsd;
import org.eclipse.xsd.XSDAttributeDeclaration;
import org.eclipse.xsd.XSDTypeDefinition;
public class XsdAttributeDeclaration
extends XsdFeature<XSDAttributeDeclaration> {
XsdAttributeDeclaration(XSDAttributeDeclaration xsdAttributeDeclaration) {
super(xsdAttributeDeclaration);
}
@Override
public XsdTypeDefinition getType() {
XSDTypeDefinition xsdType = getXSDComponent().getType();
return (xsdType == null) ? null : (XsdTypeDefinition) XsdUtil.getAdapter(xsdType);
}
}