forked from demo/example
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
349 B
13 lines
349 B
6 years ago
|
package com.fr.plugin.core;
|
||
|
|
||
|
import com.fr.stable.fun.impl.AbstractGraphDrawProcessor;
|
||
|
|
||
|
import java.awt.Graphics;
|
||
|
import java.awt.Image;
|
||
|
|
||
|
public class GraphDrawProcessorImpl extends AbstractGraphDrawProcessor {
|
||
|
@Override
|
||
|
public void paintImage(Graphics graphics, int i, int i1, Image image, int i2, int i3, int i4, int i5, int i6) {
|
||
|
|
||
|
}
|
||
|
}
|