17 lines
268 B
Java
17 lines
268 B
Java
|
package com.kofax.mobile.sdk.extract.id.bundle;
|
||
|
|
||
|
import java.io.File;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public interface IBundleFile {
|
||
|
String getAbsolutePath();
|
||
|
|
||
|
File getFile();
|
||
|
|
||
|
void getFile(File file);
|
||
|
|
||
|
String getName();
|
||
|
|
||
|
boolean isDirectory();
|
||
|
}
|