1 package com.mxgraph.examples.swing.editor;
2 
3 
4 
5 /**
6  * Instances of this interface are looked up by the
7  * ServiceLoader and are used to implement custom pallets.
8  * @author Pavel Vlasov.
9  *
10  */
11 public interface EditorPaletteFactory {
12 
getTitle()13 	String getTitle();
14 
populate(EditorPalette palette)15 	void populate(EditorPalette palette);
16 
17 }
18