]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/container/FormatHandler.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / container / FormatHandler.java
1 package org.simantics.databoard.container;
2
3 import org.simantics.databoard.binding.Binding;
4
5 public interface FormatHandler<T> {
6         
7     /**
8      * Returns preferred binding for reading the data content.
9      * @return binding of the format
10      */
11     Binding getBinding();
12     
13     T process(DataContainer container) throws Exception;
14 }