Package org.locationtech.udig.document.model

Examples of org.locationtech.udig.document.model.FileAttachmentDocument


     */
    public IDocument create(DocumentInfo info) {
        AbstractDocument doc = null;
        if (Type.ATTACHMENT == info.getType()) {
            if (ContentType.FILE == info.getContentType()) {
                doc = new FileAttachmentDocument(info);
            }
        } else if (Type.LINKED == info.getType()) {
            if (ContentType.FILE == info.getContentType()) {
                doc = new FileLinkedDocument(info);
            } else if (ContentType.WEB == info.getContentType()) {
View Full Code Here

TOP

Related Classes of org.locationtech.udig.document.model.FileAttachmentDocument

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.