xmlschema-core/src/main/java/org/apache/ws/commons/schema/XmlSchemaAttribute.java [177:186]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean isRef() {
        return ref.getTargetQName() != null;
    }

    public QName getTargetQName() {
        return ref.getTargetQName();
    }

    public XmlSchemaRefBase getRefBase() {
        return ref;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



xmlschema-core/src/main/java/org/apache/ws/commons/schema/XmlSchemaElement.java [328:337]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean isRef() {
        return ref.getTargetQName() != null;
    }

    public QName getTargetQName() {
        return ref.getTargetQName();
    }

    public XmlSchemaRefBase getRefBase() {
        return ref;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



