34 lines
727 B
Java
34 lines
727 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* javax.baja.file.BIFile
|
|
* javax.baja.file.FilePath
|
|
* javax.baja.sys.Context
|
|
*/
|
|
package com.tridium.platform.license;
|
|
|
|
import java.io.OutputStream;
|
|
import javax.baja.file.BIFile;
|
|
import javax.baja.file.FilePath;
|
|
import javax.baja.sys.Context;
|
|
|
|
public interface IFileInfo {
|
|
public BIFile getFile();
|
|
|
|
public String toString(Context var1);
|
|
|
|
public String getInstalledFileName();
|
|
|
|
public FilePath getInstalledFilePath();
|
|
|
|
public String getXmlContent();
|
|
|
|
public String getXmlSummary();
|
|
|
|
public void write(OutputStream var1) throws Exception;
|
|
|
|
public void write(OutputStream var1, boolean var2) throws Exception;
|
|
}
|
|
|