blob: cbd01262f885778f4930126d01bacac9d9297d9f (
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
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_util_Collections$EmptySet__
#define __java_util_Collections$EmptySet__
#pragma interface
#include <java/util/AbstractSet.h>
#include <gcj/array.h>
class java::util::Collections$EmptySet : public ::java::util::AbstractSet
{
public: // actually package-private
Collections$EmptySet();
public:
jint size();
::java::util::Iterator * iterator();
jboolean contains(::java::lang::Object *);
jboolean containsAll(::java::util::Collection *);
jboolean equals(::java::lang::Object *);
jint hashCode();
jboolean remove(::java::lang::Object *);
jboolean removeAll(::java::util::Collection *);
jboolean retainAll(::java::util::Collection *);
JArray< ::java::lang::Object * > * toArray();
JArray< ::java::lang::Object * > * toArray(JArray< ::java::lang::Object * > *);
::java::lang::String * toString();
private:
static const jlong serialVersionUID = 1582296315990362920LL;
public:
static ::java::lang::Class class$;
};
#endif // __java_util_Collections$EmptySet__
|