Interface ExportStrategy<C extends Component>
-
- Type Parameters:
C
- The type of component supported by this export strategy.
public interface ExportStrategy<C extends Component>
A strategy for exporting data from a component.- Author:
- Garret Wilson
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Transferable<C>
exportTransfer(C component)
Exports data from the given component.
-
-
-
Method Detail
-
exportTransfer
Transferable<C> exportTransfer(C component)
Exports data from the given component.- Parameters:
component
- The component from which data will be transferred.- Returns:
- The object to be transferred, or
null
if no data can be transferred.
-
-