All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mateu.mdd.vaadin.components.views.ResourceModel Maven / Gradle / Ivy

There is a newer version: 1.1.60
Show newest version
package io.mateu.mdd.vaadin.components.views;


import io.mateu.mdd.shared.interfaces.IResource;

public class ResourceModel {

    private IResource resource;

    public IResource getResource() {
        return resource;
    }

    public void setResource(IResource resource) {
        this.resource.setType(resource.getType());
        this.resource.setName(resource.getName());
        this.resource.setBytes(resource.getBytes());
        this.resource.setPath(resource.getPath());
    }

    public ResourceModel(IResource original) {
        this.resource = original;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy