View Javadoc
1   package io.guixer.lang;
2   
3   import java.io.File;
4   import java.io.IOException;
5   
6   public interface MyYamlStrategy {
7   
8   	MyYaml loadYaml(
9   		File yamlFile
10  	) throws IOException;
11  }