/*
  i-net software provides programming examples for illustration only, without warranty
  either expressed or implied, including, but not limited to, the implied warranties
  of merchantability and/or fitness for a particular purpose. This programming example
  assumes that you are familiar with the programming language being demonstrated and
  the tools used to create and debug procedures. i-net software support professionals
  can help explain the functionality of a particular procedure, but they will not modify
  these examples to provide added functionality or construct procedures to meet your
  specific needs.
  © i-net software 1998-2010
*/

package samples.multi_language_reports;

import java.util.ListResourceBundle;

/**
 * English Language Resource
 */
public class SetLocaleSample extends ListResourceBundle {

    private static final Object[][] CONTENTS = {
        {"Title",   "Customer:"},
        {"label_1", "First Name:"},
        {"label_2", "Last Name:"},
        {"label_3", "Address:"},
        {"label_4", "State/Country:"},
        {"label_5", "E-Mail Address:"}
    };

    /**
     * Returns the content of this language resource 
     * @return language resource content
     */
	public Object[][] getContents() {
 		return CONTENTS;
 	}
}
