package jetbrains.mps.make.resources; /*Generated by MPS */ import java.util.Map; import java.io.IOException; public interface IPropertiesIO { Object getKey(); Map<String, String> readProperties() throws IOException; void writeProperties(Map<String, String> store) throws IOException; }