package org.simantics.common.format; /* * This interface performs string formatting for arbitrary input. Implementations usually make some assumptions about the input. */ public interface Formatter { String format(Object object); }