⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 painter.java

📁 OpenJGraph是一个开源的Java库
💻 JAVA
字号:
package salvo.jesus.graph.visual.drawing;import java.awt.*;import java.io.*;import salvo.jesus.graph.*;import salvo.jesus.graph.visual.*;/** * An interface representing painters that are responsible for * painting <tt>VisualGraphComponent</tt>s. * * @author  Jesus M. Salvo Jr. */public interface Painter extends Serializable {    /**     * Paints the specified component using a Graphics2D context.     *     * @param   component   The <tt>VisualGraphComponent</tt> to be painted.     * @param   g2d         The context to which the component will be painted.     */    public void paint( VisualGraphComponent component, Graphics2D g2d );}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -