home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / InterchangeableCustomerInfoPanel.java < prev    next >
Text File  |  1998-05-08  |  2KB  |  53 lines

  1. /*
  2.  * Copyright (c) 1997-1998 Borland International, Inc. All Rights Reserved.
  3.  * 
  4.  * This SOURCE CODE FILE, which has been provided by Borland as part
  5.  * of a Borland product for use ONLY by licensed users of the product,
  6.  * includes CONFIDENTIAL and PROPRIETARY information of Borland.  
  7.  *
  8.  * USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS 
  9.  * OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH
  10.  * THE PRODUCT.
  11.  *
  12.  * IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD BORLAND, ITS RELATED
  13.  * COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY CLAIMS
  14.  * OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR DISTRIBUTION
  15.  * OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES ARISING OUT OF
  16.  * OR RESULTING FROM THE USE, MODIFICATION, OR DISTRIBUTION OF PROGRAMS
  17.  * OR FILES CREATED FROM, BASED ON, AND/OR DERIVED FROM THIS SOURCE
  18.  * CODE FILE.
  19.  */
  20. package borland.samples.intl.gui;
  21.  
  22. import java.awt.*;
  23. import java.awt.event.*;
  24. import java.util.*;
  25. import borland.jbcl.layout.*;
  26. import borland.jbcl.control.*;
  27. import borland.jbcl.dataset.*;
  28.  
  29. import borland.samples.intl.application.*;
  30. import borland.samples.intl.beans.event.*;
  31.  
  32. /*
  33.  * Interface implemented by customer information panels which
  34.  * are loaded into the ShipToPanel panel and SoldToPanel panel
  35.  * within the OrderFrame frame.
  36.  * Implements LocaleChangeListener in the event that this
  37.  * panel is found to be the closest match for the newly
  38.  * selected language, but for a different country.  For
  39.  * example, CustomerInfoPanel.java is the default panel for countries
  40.  * for whose language and country a localized CustomerInfoPanel
  41.  * does not exist.  When a locale change occurs, it should
  42.  * attempt to reload its localizable strings from the new locale's
  43.  * resource bundle in case only the strings were localized.
  44.  * Because the caller is responsible for loading this panel,
  45.  * the caller is also responsible for registering and
  46.  * deregistering this panel with the system LocaleChangeManager.
  47.  */
  48. public interface InterchangeableCustomerInfoPanel extends LocaleChangeListener {
  49.   public void setDataSet(DataSet dataSet);
  50.   public void setReadOnly(boolean readOnly);
  51. }
  52.  
  53.