// Sample code file: FilesystemResourceBundle.java

// Warning: This code has been marked up for HTML

/*
   Copyright (c) 1997-2002 Novell, Inc.  All Rights Reserved.

   THIS WORK IS SUBJECT TO U.S. AND INTERNATIONAL COPYRIGHT LAWS AND TREATIES.
   USE AND REDISTRIBUTION OF THIS WORK IS SUBJECT TO THE LICENSE AGREEMENT 
   ACCOMPANYING THE SOFTWARE DEVELOPMENT KIT (SDK) THAT CONTAINS THIS WORK.
   PURSUANT TO THE SDK LICENSE AGREEMENT, NOVELL HEREBY GRANTS TO DEVELOPER A 
   ROYALTY-FREE, NON-EXCLUSIVE LICENSE TO INCLUDE NOVELL'S SAMPLE CODE IN ITS 
   PRODUCT. NOVELL GRANTS DEVELOPER WORLDWIDE DISTRIBUTION RIGHTS TO MARKET, 
   DISTRIBUTE, OR SELL NOVELL'S SAMPLE CODE AS A COMPONENT OF DEVELOPER'S 
   PRODUCTS. NOVELL SHALL HAVE NO OBLIGATIONS TO DEVELOPER OR DEVELOPER'S 
   CUSTOMERS WITH RESPECT TO THIS CODE.
*/
package com.novell.sample.snapins.filesystem.resources;

import java.util.*;
import java.awt.*;
import java.awt.event.*;

/**
* Houston's localized resources for sample filesystem snapins.  Note that images are not kept here, but
* are kept in the image directory off of this directory as gif files.  Image
* names are kept here.
*/
public final class FilesystemResourceBundle extends ListResourceBundle
{
   /**
   * The list of objects with their corresponding keys is stored here.
   */
   static final private Object[][] contents =
   {
      //*********************************************************************
      // Snapin Collection Information
      //*********************************************************************
      {"Snapin-Collection-Name","Novell Sample Filesystem"},
      {"Snapin-Collection-Description","This is Novell's sample filesystem snapin collection."},
      {"Snapin-Collection-Copyright","Copyright (c) 1997-1999 Novell, Inc.  All Rights Reserved."},
      {"Snapin-Collection-Vendor-Name","Novell, Inc."},
      {"Snapin-Collection-Vendor-Address","122 East 1700 South, Provo, UT  84606-6194"},
      {"Snapin-Collection-Vendor-Support-URL","www.novell.com/products/ConsoleOne"},
      {"Snapin-Collection-Vendor-Support-Phone","(801) 555-5555"},
   };

   /**
   * Overrides ListResourceBundle's getContents().
   */
   public Object[][] getContents()
   {
      return contents;
   }
}