Done,
Actually I had the method signature you proposed but I changed that
immediately before I commit :)

Thanks
Deepal
> [EMAIL PROTECTED] wrote:
>> +    public void exportToRegistry(File file, String path) throws
>> RegistryException {
>> +        try {
>> +            processImport(file, path);
>> +        } catch (Exception e) {
>> +            e.printStackTrace();
>> +            throw new RegistryException(e.getMessage());
>> +        }
>> +    }
>
> Please rename the above method "import".
>
>> +    public void importFromRegistry(File toFile, String path) throws
>> RegistryException {
>> +        try {
>> +            processExport(path, toFile);
>> +        } catch (Exception e) {
>> +            e.printStackTrace();
>> +            throw new RegistryException(e.getMessage());
>> +        }
>> +    }
>
> Please rename the above method "export".
>
> The current names don't make sense ... having a method named
> importFromRegistry calling processExport is the hint ;-).
>
> Sanjiva.



_______________________________________________
Registry-dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/registry-dev

Reply via email to