From 291f85057cf8e85192c249c1b086f56b8fa509aa Mon Sep 17 00:00:00 2001 From: Sauilitired Date: Thu, 25 Sep 2014 10:04:26 +0200 Subject: [PATCH] Begun :D --- .../plot/PlotCollection.java | 106 ++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 PlotSquared/src/com/intellectualcrafters/plot/PlotCollection.java diff --git a/PlotSquared/src/com/intellectualcrafters/plot/PlotCollection.java b/PlotSquared/src/com/intellectualcrafters/plot/PlotCollection.java new file mode 100644 index 000000000..2ea4b4eac --- /dev/null +++ b/PlotSquared/src/com/intellectualcrafters/plot/PlotCollection.java @@ -0,0 +1,106 @@ +package com.intellectualcrafters.plot; + +import java.util.Collection; +import java.util.Iterator; + +/** + * Created by Citymonstret on 2014-09-25. + */ +public class PlotCollection implements Collection { + + private Plot[] collection; + + public PlotCollection(int size) { + this.collection = new Plot[size]; + } + + @Override + public int size() { + return this.collection.length; + } + + @Override + public boolean isEmpty() { + return this.collection.length == 0; + } + + @Override + public boolean contains(Object o) { + if(!(o instanceof Plot)) { + throw new IllegalArgumentException("Object not instance of Plot.class"); + } + Plot p = (Plot) o; + for(Plot plot : this.collection) { + if(plot.getId().toString().equals(p.getId().toString())) { + return true; + } + } + return false; + } + + @Override + public Iterator iterator() { + return null; + } + + @Override + public Object[] toArray() { + return this.collection; + } + + @Override + public boolean add(Object o) { + Plot[] pre = this.collection; + this.collection = new Plot[pre.length + 1]; + for(int x = 0; x < pre.length; x++) { + this.collection[x] = pre[x]; + } + this.collection[collection.length - 1] = (Plot) o; + return true; + } + + @Override + public boolean remove(Object o) { + Plot[] pre = this.collection; + this.collection = new Plot[pre.length - 1]; + int x = 0; + for(Plot plot : pre) { + if(plot != (Plot) o) { + this.collection[x++] = plot; + } + } + return false; + } + + @Override + public boolean addAll(Collection c) { + return false; + } + + @Override + public void clear() { + + } + + @Override + public boolean retainAll(Collection c) { + return false; + } + + @Override + public boolean removeAll(Collection c) { + return false; + } + + @Override + public boolean containsAll(Collection c) { + return false; + } + + @Override + public T[] toArray(Object[] a) { + return new T[0]; + } + + public +}