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

org.ar4k.agent.helper.RootFileSystem Maven / Gradle / Ivy

There is a newer version: 0.9.1014
Show newest version
package org.ar4k.agent.helper;

import java.io.File;
import java.util.List;

public class RootFileSystem {

  private List childs = null;
  private long totalSpace = 0;
  private long freeSpace = 0;
  private File absoluteFile = null;

  public void setAbsolutePath(File absoluteFile) {
    this.absoluteFile = absoluteFile;
  }

  public void setFreeSpace(long freeSpace) {
    this.freeSpace = freeSpace;
  }

  public void setTotalSpace(long totalSpace) {
    this.totalSpace = totalSpace;
  }

  public void setChilds(List childs) {
    this.childs = childs;
  }

  protected File getAbsoluteFile() {
    return absoluteFile;
  }

  protected void setAbsoluteFile(File absoluteFile) {
    this.absoluteFile = absoluteFile;
  }

  protected List getChilds() {
    return childs;
  }

  protected long getTotalSpace() {
    return totalSpace;
  }

  protected long getFreeSpace() {
    return freeSpace;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy