Instance 0

Class490.paint(Graphics g)#0{
        g2d.setColor(Color.white);
        g2d.fill(r);
        g2d.setColor(Color.blue);
        g2d.draw(l);
        g2d.setColor(Color.black);
}


Instance 1

Class750.paint(Graphics g)#0{
        g2d.setColor(Color.white);
        g2d.fill(r);
        g2d.setColor(Color.blue);
        g2d.draw(l);
        g2d.setColor(Color.black);
}


Instance 2

Class710.paintComponent(Graphics graphics)#2{
            g.setColor(new Color(25500128));
            g.fill(inner);
            g.setColor(Color.red);
            g.draw(inner);
            g.setColor(oldColor);
            g.setStroke(oldStroke);
}


Instance 3

Class420.paintComponent(Graphics g)#3{
            g2d.setColor(mouseOverColor);
            g2d.setColor(normalColor);            
         g2d.fill(roundedRectangle);
         g2d.setColor(Color.white);
         g2d.draw(roundedRectangle);
         roundedRectangle = new RoundRectangle2D.Float(11, getActualWidth()-3, getActualHeight()-31010);
}


Instance 4

Class200.draw(Graphics2D g,NodeView nodeView,Rectangle r)#0{
    final Shape shape = getShape(r);
    g.setColor(getFillColor(nodeView));
    g.fill(shape);
    g.setColor(edgeColor);
    drawShape(g, shape, r, nodeView);
    g.setColor(color);
}


Instance 5

Class560.paintOffscreen(Graphics2D g,Rectangle rect){
        g.setColor(Color.white);
        g.fill(rect);
        paintImpl(g, rect);
        Color c = g.getColor();
        g.setColor(Color.darkGray);
        g.drawRect(rect.x, rect.y, rect.width, rect.height);
        g.setColor(c);            //super.paintBorder(g);
}


Instance 6

Class390.paintBorder(Component c,Graphics g,int x,int y,int width,int height)#2{
        g2.setStrokenew BasicStrokethickness ) );
        g2.setColoroutlineColor );
        g2.drawpath );
        g2.setColorbackgroundColor );
        g2.fillpath );
        g2.setStrokeprevStroke );
        g2.setPaintprevPaint );
        g2.setRenderingHintRenderingHints.KEY_ANTIALIASING , prevAntialias );
}


Instance 7

Class470.paintLowerThumb(Graphics g)#0{
        if (thumbImage != null) {
            // Draw thumb using image.
            g2d.drawImage(thumbImage, knobBounds.x, knobBounds.y, null);
            
        else {
            // Create default thumb shape.
            Shape thumbShape = createThumbShape(w - 1, h - 1false);

            // Draw thumb.
            g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                    RenderingHints.VALUE_ANTIALIAS_ON);
            g2d.translate(knobBounds.x, knobBounds.y);

            g2d.setColor(Color.CYAN);
            g2d.fill(thumbShape);

            g2d.setColor(Color.BLUE);
            g2d.draw(thumbShape);
        }
        g2d.dispose();
}


Instance 8

Class210.draw(final Graphics2D g2,final Rectangle2D bounds)#2{
    final Graphics2D graphics2D = (Graphics2Dg2.create();
    graphics2D.clipbounds );
    graphics2D.setColorbackground );
    graphics2D.fillbounds );
    graphics2D.setFontfont );
    graphics2D.setColorforeground );
}


Instance 9

Class740.draw(Graphics2D g2d,AlphaComposite composite,String name)#0{
        GeneralPath src = new GeneralPath();
        src.moveTo(00);
        src.lineTo(0100);
        src.closePath();
        g2d.fill(src);
        g2d.setComposite(AlphaComposite.Src);
        g2d.setColor(Color.white);
        g2d.fillRect(40906010);
        g2d.setColor(Color.black);
        g2d.drawString(name, 45100);
}


Instance 10

Class720.paintActiveArea(Graphics2D g2)#1{
    g2.setColor(LAFConstants.getCurveEditorActiveBackgroundColor());
    g2.draw(activeAreaRectangle);
    g2.fill(activeAreaRectangle);
}


Instance 11

Class520.getBiWithAxes()#1{
        Rectangle backRect = new Rectangle(00this.image.getWidth() 40this.image.getHeight() 40);
        graphicAxis.fill(backRect);
        graphicAxis.draw(backRect);
        graphicAxis.drawImage(this.image, 355null);
        graphicAxis.setColor(Color.BLACK);
}


Instance 12

Class220.drawHint(Graphics2D g,String text,int x,int y,Color bgColor,Color textColor)#3{
        g2.setStroke(new BasicStroke(1.3f));
        g2.setColor(bgColor);
        mixAlpha(g2, AlphaComposite.SRC_OVER, 1f 2f);
        g2.fill(backgroundRect);
}


Instance 13

Class50.paint(Graphics g)#1{
                    g2d.setColor(Color.black);
                    g2d.setXORMode(Color.white);
                    g2d.fill(s);
}


Instance 14

Class490.setWithSolidColorIcon(AbstractButton b,Color c)#1{
      g.setColor(c);
      g.setBackground(c);
      g.fill(r);
      b.setIcon(new ImageIcon(icon));
}


Instance 15

Class370.paint(@NotNull Graphics g,@NotNull JComponent divider)#0{
      Graphics2D gg = DiffDividerDrawUtil.getDividerGraphics(g, divider, getEditor1().getComponent());
      gg.setColor(DiffDrawUtil.getDividerColor(getEditor1()));
      gg.fill(gg.getClipBounds());
}