source: trunk/src_apollo/org/apollo/gui/Strokes.java@ 356

Last change on this file since 356 was 356, checked in by bjn8, 16 years ago
File size: 255 bytes
Line 
1package org.apollo.gui;
2
3import java.awt.BasicStroke;
4import java.awt.Stroke;
5
6public class Strokes {
7
8 private Strokes() {
9 }
10
11 public static final Stroke SOLID_1 = new BasicStroke(1.0f);
12 public static final Stroke SOLID_2 = new BasicStroke(2.0f);
13
14}
Note: See TracBrowser for help on using the repository browser.