glib-2.0: Support owned delegates with Idle.add
[vala-lang.git] / gee / readonlycollection.vala
blobc1c7165cd365e396d5b3f03ec795678f83327051
1 /* readonlycollection.vala
3 * Copyright (C) 2007-2008 Jürg Billeter
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 * Author:
20 * Jürg Billeter <j@bitron.ch>
23 using GLib;
25 /**
26 * Represents a read-only collection of items.
28 public class Gee.ReadOnlyCollection<G> : CollectionObject, Iterable<G>, Collection<G> {
29 public int size {
30 get { return _collection.size; }
33 public Collection<G> collection {
34 set { _collection = value; }
37 private Collection<G> _collection;
39 public ReadOnlyCollection (Collection<G>? collection = null) {
40 this.collection = collection;
43 public Type get_element_type () {
44 return typeof (G);
47 public Gee.Iterator<G> iterator () {
48 if (_collection == null) {
49 return new Iterator<G> ();
52 return _collection.iterator ();
55 public bool contains (G item) {
56 if (_collection == null) {
57 return false;
60 return _collection.contains (item);
63 public bool add (G item) {
64 assert_not_reached ();
67 public bool remove (G item) {
68 assert_not_reached ();
71 public void clear () {
72 assert_not_reached ();
75 private class Iterator<G> : CollectionObject, Gee.Iterator<G> {
76 public bool next () {
77 return false;
80 public G? get () {
81 return null;