blob: 4224aeaa42ad77ab7aacf9f7ab73272401f3c998 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_text_spi_NumberFormatProvider__
#define __java_text_spi_NumberFormatProvider__
#pragma interface
#include <java/util/spi/LocaleServiceProvider.h>
extern "Java"
{
namespace java
{
namespace text
{
class NumberFormat;
namespace spi
{
class NumberFormatProvider;
}
}
}
}
class java::text::spi::NumberFormatProvider : public ::java::util::spi::LocaleServiceProvider
{
public: // actually protected
NumberFormatProvider();
public:
virtual ::java::text::NumberFormat * getCurrencyInstance(::java::util::Locale *) = 0;
virtual ::java::text::NumberFormat * getIntegerInstance(::java::util::Locale *) = 0;
virtual ::java::text::NumberFormat * getNumberInstance(::java::util::Locale *) = 0;
virtual ::java::text::NumberFormat * getPercentInstance(::java::util::Locale *) = 0;
static ::java::lang::Class class$;
};
#endif // __java_text_spi_NumberFormatProvider__
|