/** * $Id: mxITextShape.java,v 1.3 2010-07-18 19:47:20 david Exp $ * Copyright (c) 2010, Gaudenz Alder, David Benson */ package com.mxgraph.shape; import java.util.Map; import com.mxgraph.canvas.mxGraphics2DCanvas; import com.mxgraph.view.mxCellState; public interface mxITextShape { /** * */ void paintShape(mxGraphics2DCanvas canvas, String text, mxCellState state, Map<String, Object> style); }