|
|
@ -38,6 +38,7 @@ import java.io.InputStream; |
|
|
|
import java.io.OutputStream; |
|
|
|
import java.io.OutputStream; |
|
|
|
import java.util.List; |
|
|
|
import java.util.List; |
|
|
|
import java.util.Properties; |
|
|
|
import java.util.Properties; |
|
|
|
|
|
|
|
import org.openide.cookies.SaveCookie; |
|
|
|
import org.openide.filesystems.FileAlreadyLockedException; |
|
|
|
import org.openide.filesystems.FileAlreadyLockedException; |
|
|
|
import org.openide.filesystems.FileLock; |
|
|
|
import org.openide.filesystems.FileLock; |
|
|
|
import org.openide.filesystems.FileObject; |
|
|
|
import org.openide.filesystems.FileObject; |
|
|
@ -71,6 +72,14 @@ public class AssetData extends Properties { |
|
|
|
file.setAssetKeyData(key); |
|
|
|
file.setAssetKeyData(key); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setModified(boolean modified){ |
|
|
|
|
|
|
|
file.setModified(modified); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setSaveCookie(SaveCookie cookie){ |
|
|
|
|
|
|
|
file.setSaveCookie(cookie); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public Object loadAsset() { |
|
|
|
public Object loadAsset() { |
|
|
|
return file.loadAsset(); |
|
|
|
return file.loadAsset(); |
|
|
|
} |
|
|
|
} |
|
|
|