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

de.dagere.kopeme.kopemedata.Fulldata Maven / Gradle / Ivy

package de.dagere.kopeme.kopemedata;

import java.util.LinkedList;
import java.util.List;

public class Fulldata {
   private String fileName;
   private List values = new LinkedList<>();

   public String getFileName() {
      return fileName;
   }

   public void setFileName(String fileName) {
      this.fileName = fileName;
   }

   public List getValues() {
      return values;
   }

   public void setValues(List values) {
      this.values = values;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy