001package kiwi.ui.propeditor;
002
003public abstract class PropertyType
004  {
005
006  public String formatValue(Object value)
007    {
008    return(value.toString());
009    }
010  
011  }
012
013/* end of source file */