Package org.appfuse.webapp.data

Examples of org.appfuse.webapp.data.FileData


    private FileData fileData;


    @Log
    void onPrepare() {
        fileData = new FileData();
    }
View Full Code Here


    public String toClient(FileData fileData) {
        return fileData.getFile().getFileName();
    }

    public FileData toValue(String name) {
        FileData fileData = new FileData();
        fileData.setFriendlyName(name);
        return fileData;
    }
View Full Code Here

TOP

Related Classes of org.appfuse.webapp.data.FileData

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.