com.github.bloodshura.ignitium.ntv.source.SlicedSizedDataSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ignitium-native Show documentation
Show all versions of ignitium-native Show documentation
An API for working with native system APIs, with a higher-level interface.
The newest version!
package com.github.bloodshura.ignitium.ntv.source;
import javax.annotation.Nonnull;
public class SlicedSizedDataSource extends SlicedDataSource implements SizedDataSource {
public SlicedSizedDataSource(@Nonnull SizedDataSource parent, long offset) {
super(parent, offset);
}
@Override
public int getSize() {
return ((SizedDataSource) parent).getSize();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy