#753 Reload "saved as" swf

This commit is contained in:
honfika@gmail.com
2014-12-14 17:21:56 +01:00
parent 60f170dcda
commit fac4df46e5
6 changed files with 50 additions and 43 deletions

View File

@@ -12,7 +12,8 @@
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library.
* License along with this library.
*/
package com.jpexs.decompiler.flash;
import com.jpexs.helpers.Path;
@@ -29,7 +30,7 @@ import java.io.InputStream;
public class SWFSourceInfo {
private final InputStream inputStream;
private final InputStream inputStream;
private String file;
private final String fileTitle;
public SWFSourceInfo(InputStream inputStream, String file, String fileTitle) {
@@ -46,6 +47,10 @@ public class SWFSourceInfo {
return file;
}
public void setFile(String file) {
this.file = file;
}
public String getFileTitle() {
return fileTitle;
}