1 package com.octo.captcha.component.image.textpaster.glyphsvisitor; 2 3 import com.octo.captcha.component.image.textpaster.Glyphs; 4 5 import java.awt.geom.Rectangle2D; 6 7 /*** 8 * @author mag 9 * @Date 6 mars 2008 10 */ 11 public interface GlyphsVisitors { 12 void visit(Glyphs glyphs, Rectangle2D backroundBounds); 13 }