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

com.frostwire.jlibtorrent.swig.file_slice Maven / Gradle / Ivy

There is a newer version: 1.2.0.18
Show newest version
/* ----------------------------------------------------------------------------
 * This file was automatically generated by SWIG (http://www.swig.org).
 * Version 3.0.12
 *
 * Do not make changes to this file unless you know what you are doing--modify
 * the SWIG interface file instead.
 * ----------------------------------------------------------------------------- */

package com.frostwire.jlibtorrent.swig;

public class file_slice {
  private transient long swigCPtr;
  protected transient boolean swigCMemOwn;

  protected file_slice(long cPtr, boolean cMemoryOwn) {
    swigCMemOwn = cMemoryOwn;
    swigCPtr = cPtr;
  }

  protected static long getCPtr(file_slice obj) {
    return (obj == null) ? 0 : obj.swigCPtr;
  }

  protected void finalize() {
    delete();
  }

  public synchronized void delete() {
    if (swigCPtr != 0) {
      if (swigCMemOwn) {
        swigCMemOwn = false;
        libtorrent_jni.delete_file_slice(swigCPtr);
      }
      swigCPtr = 0;
    }
  }

  public void setFile_index(int value) {
    libtorrent_jni.file_slice_file_index_set(swigCPtr, this, value);
  }

  public int getFile_index() {
    return libtorrent_jni.file_slice_file_index_get(swigCPtr, this);
  }

  public void setOffset(long value) {
    libtorrent_jni.file_slice_offset_set(swigCPtr, this, value);
  }

  public long getOffset() {
    return libtorrent_jni.file_slice_offset_get(swigCPtr, this);
  }

  public void setSize(long value) {
    libtorrent_jni.file_slice_size_set(swigCPtr, this, value);
  }

  public long getSize() {
    return libtorrent_jni.file_slice_size_get(swigCPtr, this);
  }

  public file_slice() {
    this(libtorrent_jni.new_file_slice(), true);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy