Package org.apache.sis.internal.jaxb.gmx

Examples of org.apache.sis.internal.jaxb.gmx.FileName


    @XmlElement(name = "FileName", namespace = Namespaces.GMX)
    final FileName getFileName() {
        if (type == FILENAME) {
            final CharSequence text = this.text;
            if (text != null && !(text instanceof Anchor)) {
                return new FileName(text.toString());
            }
        }
        return null;
    }
View Full Code Here

TOP

Related Classes of org.apache.sis.internal.jaxb.gmx.FileName

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.