This repository has been archived on 2022-12-21. You can view files and clone it, but cannot push or open issues or pull requests.
sdm03/src/main/java/com/github/dtschust/zork/parser/PropertyParseStrategy.java

6 lines
124 B
Java
Raw Normal View History

2022-11-22 12:43:15 +00:00
package com.github.dtschust.zork.parser;
public interface PropertyParseStrategy<T> {
T parse(final Property source);
}