br.com.objectos.way.etc.Etcs Maven / Gradle / Ivy
The newest version!
/*
* Yaml.java criado em 04/09/2012
*
* Propriedade de Objectos Fábrica de Software LTDA.
* Reprodução parcial ou total proibida.
*/
package br.com.objectos.way.etc;
import com.google.inject.ImplementedBy;
/**
* @author [email protected] (Marcio Endo)
*/
@ImplementedBy(EtcsGuice.class)
public interface Etcs {
T read(Class type);
Object readProperty(String key);
void write(Object model);
void writeProperty(String key, String value);
String toString(Object model);
}