]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.common/src/org/simantics/common/format/Formatter.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.common / src / org / simantics / common / format / Formatter.java
1 package org.simantics.common.format;
2
3 /*
4  * This interface performs string formatting for arbitrary input. Implementations usually make some assumptions about the input.
5  */
6 public interface Formatter {
7
8         String format(Object object);
9         
10 }