01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.desktop.dp;
06:
07: /**
08: * @deprecated Use LocalePropertiesFilter instead.
09: * @see com.sun.portal.provides.context.LocalePropertiesFilter
10: */
11: public interface DPLocale extends DPCollection {
12: public String getLanguage();
13:
14: public String getCountry();
15:
16: public String getVariant();
17: }
|