More documentation.

This commit is contained in:
Jindra Petřík
2024-08-06 06:17:00 +02:00
parent 68954e714d
commit b57e38e387
286 changed files with 11752 additions and 3576 deletions

View File

@@ -19,11 +19,16 @@ package com.jpexs.decompiler.flash;
import java.io.IOException;
/**
*
* Runnable with IOException and InterruptedException.
* @author JPEXS
*/
@FunctionalInterface
public interface RunnableIOEx {
/**
* Run method.
* @throws IOException
* @throws InterruptedException
*/
public void run() throws IOException, InterruptedException;
}