KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > fractal > jar > adl > FileContainer


1 /*
2  * Copyright area
3  */

4
5 package org.objectweb.fractal.jar.adl;
6
7 public interface FileContainer {
8   File[] getFiles();
9   void addFile (File f);
10   void removeFile (File f);
11 }
12
Popular Tags