Package org.cytoscape.io
Interface CyFileFilterProvider
-
- All Known Subinterfaces:
CyNetworkViewWriterFactory
,CyPropertyWriterFactory
,CySessionWriterFactory
,CyTableWriterFactory
,CyWriterFactory
,InputStreamTaskFactory
,PresentationWriterFactory
,VizmapWriterFactory
- All Known Implementing Classes:
AbstractInputStreamTaskFactory
public interface CyFileFilterProvider
An interface extended by various reader and writer factories. It provides basic information about the types of supported files.Module:
io-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>io-api</artifactId> </dependency>
Cytoscape Backwards Compatibility (SPI Interface): We expect that this interface will be implemented. Therefore to maintain backwards compatibility this interface will only be modified for major version updates.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CyFileFilter
getFileFilter()
Return the file filter associated with the IOFactory.
-
-
-
Method Detail
-
getFileFilter
CyFileFilter getFileFilter()
Return the file filter associated with the IOFactory.- Returns:
- the
CyFileFilter
associated with the IOFactory.
-
-