source: osm/applications/editors/josm/plugins/smed2/src/symbols/Facilities.java@ 29109

Last change on this file since 29109 was 29109, checked in by malcolmh, 12 years ago

save

File size: 1.3 KB
Line 
1/* Copyright 2012 Malcolm Herring
2 *
3 * This is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, version 3 of the License.
6 *
7 * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>.
8 */
9
10package symbols;
11
12import java.util.ArrayList;
13
14import symbols.Symbols.Instr;
15
16public class Facilities {
17 public static final ArrayList<Instr> Boatlift = new ArrayList<Instr>();//was Crane
18 public static final ArrayList<Instr> Boatyard = new ArrayList<Instr>();
19 public static final ArrayList<Instr> Chandler = new ArrayList<Instr>();
20 public static final ArrayList<Instr> Fuel = new ArrayList<Instr>();
21 public static final ArrayList<Instr> Laundrette = new ArrayList<Instr>();
22 public static final ArrayList<Instr> PumpOut = new ArrayList<Instr>();
23 public static final ArrayList<Instr> SailingClub = new ArrayList<Instr>();
24 public static final ArrayList<Instr> Shower = new ArrayList<Instr>();
25 public static final ArrayList<Instr> Slipway = new ArrayList<Instr>();
26 public static final ArrayList<Instr> Toilet = new ArrayList<Instr>();
27 public static final ArrayList<Instr> VisitorBerth = new ArrayList<Instr>();
28 public static final ArrayList<Instr> VisitorMooring = new ArrayList<Instr>();
29}
Note: See TracBrowser for help on using the repository browser.