01: package org.theospi.portfolio.list.intf;
02:
03: /**
04: * Created by IntelliJ IDEA.
05: * User: bbiltimier
06: * Date: Mar 13, 2006
07: * Time: 10:52:06 AM
08: * To change this template use File | Settings | File Templates.
09: */
10: public interface ListItemUtils {
11:
12: public String formatMessage(String key, Object[] args);
13:
14: public boolean lookUpInBundle(String field);
15:
16: }
|