Author: tchemit Date: 2012-11-14 14:58:38 +0100 (Wed, 14 Nov 2012) New Revision: 109 Url: http://forge.codelutin.com/repositories/revision/jmexico/109 Log: should expose contract as public API Modified: trunk/jmexico-editor/src/main/java/fr/reseaumexico/editor/factorValue/FactorValueEditorFactory.java Modified: trunk/jmexico-editor/src/main/java/fr/reseaumexico/editor/factorValue/FactorValueEditorFactory.java =================================================================== --- trunk/jmexico-editor/src/main/java/fr/reseaumexico/editor/factorValue/FactorValueEditorFactory.java 2012-11-13 13:32:27 UTC (rev 108) +++ trunk/jmexico-editor/src/main/java/fr/reseaumexico/editor/factorValue/FactorValueEditorFactory.java 2012-11-14 13:58:38 UTC (rev 109) @@ -133,14 +133,14 @@ factorValueEditorCache = Maps.newHashMap(); } - protected interface FactorValueCellRenderer { + public interface FactorValueCellRenderer { Component getComponent(); void setValue(Object value); } - protected interface FactorValueCellEditor<B> extends FactorValueCellRenderer { + public interface FactorValueCellEditor<B> extends FactorValueCellRenderer { B getValue();