01: package com.vividsolutions.jump.workbench.ui.renderer.style; 02: 03: import javax.swing.Icon; 04: 05: public interface ChoosableStyle extends Style { 06: 07: /** 08: * For display. 09: */ 10: public String getName(); 11: 12: /** 13: * For display. 20 x 20 pixels. 14: */ 15: public Icon getIcon(); 16: 17: }