]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/element/handler/StrokeSpec.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / element / handler / StrokeSpec.java
1 package org.simantics.g2d.element.handler;
2
3 import java.awt.Stroke;
4 import org.simantics.g2d.element.IElement;
5
6 public interface StrokeSpec extends ElementHandler {
7
8             /**
9              * @param e
10              * @return
11              */
12             Stroke getStroke(IElement e);
13
14             /**
15              * 
16              * @param e
17              * @param at
18              */
19             void setStroke(IElement e, Stroke at);
20
21 }