Interface GuiParser
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface GuiParser
Parse a file to retrieve gui container definitions.- Author:
- Grégory Van den Borre
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ContainerDefinition>parse(Path file)Parse a file and extract data to get ContainerDefinition.
-
-
-
Method Detail
-
parse
List<ContainerDefinition> parse(Path file) throws ParserException
Parse a file and extract data to get ContainerDefinition.- Parameters:
file- File to parse.- Returns:
- A list containing Extracted data.
- Throws:
ParserException- If an error occurs during the parsing.
-
-