Interface GenericFile
public interface GenericFile
Interface representing extension of 
File requiring special methods for
 finding child instances and to return InputStream providing file's content.- 
Method SummaryModifier and TypeMethodDescriptionReturns child instance with the provided name.Returns input stream of this file content.
- 
Method Details- 
getChildReturns child instance with the provided name.- Parameters:
- name- name of the child instance
- Returns:
- instance of the same class representing the child instance.
 
- 
getInputStreamReturns input stream of this file content.- Returns:
- input stream instance providing access to this file content
- Throws:
- IOException- if problem happens to open input stream
 
 
-