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

com.iceolive.util.model.CellImagesRels Maven / Gradle / Ivy

The newest version!
package com.iceolive.util.model;

import com.iceolive.xpathmapper.annotation.XPath;
import lombok.Data;

import java.util.List;

/**
 * @author wangmianzhe
 */
@Data
public class CellImagesRels {
    @XPath("/Relationships/Relationship")
    private List cellImageRelsList;
    @Data
    public static class CellImageRels {
        @XPath("./@Id")
        private String rId;
        @XPath("./@Target")
        private String target;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy