]> gerrit.simantics Code Review - simantics/platform.git/blob - FilledShape.java
246fdad8bfbe7bfc88036146048869ccd6e4cb17
[simantics/platform.git] / FilledShape.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.graphviz.internal.xdot;
13
14 import java.awt.Color;
15 import java.awt.Graphics2D;
16 import java.awt.Shape;
17
18 public class FilledShape implements ShapeCommand {
19         protected Shape shape;
20         
21         public FilledShape(Shape shape) {
22                 this.shape = shape;
23         }
24
25         @Override
26         public void draw(Graphics2D g) {
27             Color curColor = g.getColor();
28             g.setColor(SetFillColor.getFillColor());
29                 g.fill(shape);
30                 g.setColor(curColor);
31                 g.draw(shape);
32         }
33         
34         @Override
35         public Shape getShape() {
36                 return shape;
37         }
38 }