001    package com.mentata.examples.congress;
002    
003    // import necessary classes
004    import java.util.Locale;
005    import com.mentata.l3d.L3DContext;
006    import com.mentata.l3d.L3DException;
007    
008    /**
009    * An American casualty from the invasion of Iraq in 2003.
010    */
011    public class casualty extends com.mentata.examples.casualty {
012    
013            /**
014            * Constructs an empty template.
015            *
016            * @param context a containing SG8 context
017            */
018            public casualty(L3DContext context)
019                    throws L3DException {
020    
021                    // pass the context up the constructor chain
022                    super(context);
023    
024                    // modify the output
025                    setLocale(new Locale("ar", "IQ") );
026                    setFooter("gospel.htm");
027            }
028    }