| 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 |
|
|---|
| 10 | package symbols;
|
|---|
| 11 |
|
|---|
| 12 | import java.util.ArrayList;
|
|---|
| 13 |
|
|---|
| 14 | import symbols.Symbols.Instr;
|
|---|
| 15 |
|
|---|
| 16 | public class Harbours {
|
|---|
| 17 | public static final ArrayList<Instr> AnchorBerth = new ArrayList<Instr>();
|
|---|
| 18 | public static final ArrayList<Instr> Anchorage = new ArrayList<Instr>();
|
|---|
| 19 | public static final ArrayList<Instr> Bollard = new ArrayList<Instr>();
|
|---|
| 20 | public static final ArrayList<Instr> ClearV = new ArrayList<Instr>();
|
|---|
| 21 | public static final ArrayList<Instr> ContainerCrane = new ArrayList<Instr>();
|
|---|
| 22 | public static final ArrayList<Instr> DeviationDolphin = new ArrayList<Instr>();
|
|---|
| 23 | public static final ArrayList<Instr> DistanceI = new ArrayList<Instr>();
|
|---|
| 24 | public static final ArrayList<Instr> DistanceU = new ArrayList<Instr>();
|
|---|
| 25 | public static final ArrayList<Instr> Dolphin = new ArrayList<Instr>();
|
|---|
| 26 | public static final ArrayList<Instr> Harbour = new ArrayList<Instr>();
|
|---|
| 27 | public static final ArrayList<Instr> HarbourMaster = new ArrayList<Instr>();
|
|---|
| 28 | public static final ArrayList<Instr> LandingSteps = new ArrayList<Instr>();
|
|---|
| 29 | public static final ArrayList<Instr> Lock_Gate = new ArrayList<Instr>();
|
|---|
| 30 | public static final ArrayList<Instr> Lock = new ArrayList<Instr>();
|
|---|
| 31 | public static final ArrayList<Instr> Marina = new ArrayList<Instr>();
|
|---|
| 32 | public static final ArrayList<Instr> MarinaNF = new ArrayList<Instr>();
|
|---|
| 33 | public static final ArrayList<Instr> PortCrane = new ArrayList<Instr>();
|
|---|
| 34 | public static final ArrayList<Instr> Post = new ArrayList<Instr>();
|
|---|
| 35 | public static final ArrayList<Instr> Signal_Station = new ArrayList<Instr>();
|
|---|
| 36 | public static final ArrayList<Instr> Tide_Gauge = new ArrayList<Instr>();
|
|---|
| 37 | }
|
|---|