mirror of
https://github.com/SimplexDevelopment/Configurator.git
synced 2025-07-12 06:18:35 +00:00
This is like 60% done, still need to implement a few more things in each respective configuration type.
45 lines
832 B
Java
45 lines
832 B
Java
package app.simplexdev.parser;
|
|
|
|
import app.simplexdev.config.Configuration;
|
|
import app.simplexdev.config.properties.PropertiesConfig;
|
|
import java.io.FileInputStream;
|
|
import java.io.IOException;
|
|
|
|
public class PropertiesParser implements Parser<PropertiesConfig>
|
|
{
|
|
@Override
|
|
public PropertiesConfig parse(final FileInputStream p0)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public void save(final PropertiesConfig p0, final String p1)
|
|
{
|
|
}
|
|
|
|
@Override
|
|
public String getFileExtension()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public String getFileName()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public <S> S read(String p0, Class<S> p1) throws IOException
|
|
{
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public <S> void write(String p0, S p1) throws IOException
|
|
{
|
|
|
|
}
|
|
}
|