Skip to content

Package: DirectMaterialFactory

DirectMaterialFactory

Coverage

1: package material;
2:
3: /**
4: * Definiert Operationen zum erzeugen von Materialien.
5: *
6: * @param <T>
7: */
8: public interface DirectMaterialFactory<T extends Material<?>> {
9:
10: /**
11: * @param materialAlsString String der ein Material repräsentiert.
12: * @return das durch den String repräsentierte Material.
13: */
14: T parse(String materialAlsString);
15: }