~ubuntu-branches/ubuntu/precise/triplea/precise

« back to all changes in this revision

Viewing changes to src/games/strategy/triplea/delegate/BattleStepStrings.java

  • Committer: Package Import Robot
  • Author(s): Scott Howard
  • Date: 2011-11-11 21:40:11 UTC
  • Revision ID: package-import@ubuntu.com-20111111214011-sehf2rwat36o2xqf
Tags: upstream-1.3.2.2
ImportĀ upstreamĀ versionĀ 1.3.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This program is free software; you can redistribute it and/or modify
 
3
 * it under the terms of the GNU General Public License as published by
 
4
 * the Free Software Foundation; either version 2 of the License, or
 
5
 * (at your option) any later version.
 
6
 * This program is distributed in the hope that it will be useful,
 
7
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
8
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
9
 * GNU General Public License for more details.
 
10
 * You should have received a copy of the GNU General Public License
 
11
 * along with this program; if not, write to the Free Software
 
12
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
13
 */
 
14
 
 
15
/*
 
16
 * BattleStepStrings.java
 
17
 *
 
18
 * Created on January 16, 2002, 10:39 AM
 
19
 */
 
20
 
 
21
package games.strategy.triplea.delegate;
 
22
 
 
23
/**
 
24
 * Constants for the battle steps
 
25
 *
 
26
 * @author  Sean Bridges
 
27
 */
 
28
public interface BattleStepStrings
 
29
{
 
30
  final static String AA_GUNS_FIRE = "AA guns fire";
 
31
  final static String SELECT_AA_CASUALTIES = "Select AA casualties";
 
32
  final static String REMOVE_AA_CASUALTIES = "Remove AA casualties";
 
33
  final static String LAND_PARATROOPS = "Land Paratroopers";
 
34
 
 
35
  final static String NAVAL_BOMBARDMENT = "Naval bombardment";
 
36
  final static String SELECT_NAVAL_BOMBARDMENT_CASUALTIES = "Select naval bombardment casualties";
 
37
  final static String REMOVE_UNESCORTED_TRANSPORTS = "Remove unescorted transports";
 
38
  final static String SUBMERGE_SUBS_VS_AIR_ONLY = "Submerge subs against only air units";
 
39
  final static String AIR_ATTACK_NON_SUBS = "Air attack non subs";
 
40
  final static String AIR_DEFEND_NON_SUBS = "Air defend non subs";
 
41
  final static String SCRAMBLE_UNITS_FOR_DEFENSE = "Scramble units for defense";
 
42
  
 
43
  final static String REMOVE_SNEAK_ATTACK_CASUALTIES = "Remove sneak attack casualties";
 
44
 
 
45
  final static String FIRE = " fire";
 
46
 
 
47
  final static String SUBS_FIRE = " subs fire";
 
48
  final static String SELECT_SUB_CASUALTIES = " select sub casualties";
 
49
 
 
50
  final static String SELECT_CASUALTIES = " select casualties";
 
51
 
 
52
  final static String REMOVE_CASUALTIES = "Remove casualties";
 
53
  final static String SUBS_WITHDRAW = " withdraw subs?";
 
54
  final static String PLANES_WITHDRAW = " withdraw planes?";
 
55
  final static String NONAMPHIB_WITHDRAW = " withdraw non-amphibious units?";
 
56
  final static String SUBS_SUBMERGE = " submerge subs?";
 
57
 
 
58
  final static String ATTACKER_WITHDRAW = " withdraw?";
 
59
 
 
60
  final static String SCRAMBLE_UNITS = " scramble units?";
 
61
  
 
62
  final static String SUICIDE_ATTACK = "Suicide and Munition units Attack";
 
63
  final static String SUICIDE_DEFEND = "Suicide and Munition units Defend";
 
64
  final static String SELECT_CASUALTIES_SUICIDE = " select suicide casualties";
 
65
}