I'd also drop the public modifier for methods... its redundant ;-)
--jason
On Aug 21, 2006, at 10:53 AM, Sachin Patel wrote:
> For the following JIRA, where all the module builders assume a jar
> file, what if we change all methods that take a JarFile to
> something like the following?
>
> public interface IDeployableModule {
>
> public String getURI();
>
> public File getRoot();
>
> public File[] getResourceFolders();
>
> public File[] getClassesFolders();
>
> public boolean isBinary();
>
> public IDeployableModule[] getChildModules();
> }
>
> -sachin
>
>
|