aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2013-07-16 00:45:09 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2013-07-16 00:45:09 +0200
commitec0cc4348cf71d872b796d0733fb64fc576ef5df (patch)
treed7fdfd9cc4082f6af29b8d7e457c8c933cf5c0e3 /src/utils
parent1037e8322560be0721d70c2c5bfeca9d42157d85 (diff)
downloadlombok-ec0cc4348cf71d872b796d0733fb64fc576ef5df.tar.gz
lombok-ec0cc4348cf71d872b796d0733fb64fc576ef5df.tar.bz2
lombok-ec0cc4348cf71d872b796d0733fb64fc576ef5df.zip
Renamed ImmutableList to LombokImmutableList, to reduce our ImmutableList coming up in autocomplete dialogs when guava's was intended.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/lombok/core/JavaIdentifiers.java2
-rw-r--r--src/utils/lombok/core/LombokImmutableList.java (renamed from src/utils/lombok/core/ImmutableList.java)62
2 files changed, 32 insertions, 32 deletions
diff --git a/src/utils/lombok/core/JavaIdentifiers.java b/src/utils/lombok/core/JavaIdentifiers.java
index dfec8815..cbe90eed 100644
--- a/src/utils/lombok/core/JavaIdentifiers.java
+++ b/src/utils/lombok/core/JavaIdentifiers.java
@@ -27,7 +27,7 @@ package lombok.core;
public class JavaIdentifiers {
private JavaIdentifiers() {}
- private static final ImmutableList<String> KEYWORDS = ImmutableList.of(
+ private static final LombokImmutableList<String> KEYWORDS = LombokImmutableList.of(
"public", "private", "protected",
"default", "switch", "case",
"for", "do", "goto", "const", "strictfp", "while", "if", "else",
diff --git a/src/utils/lombok/core/ImmutableList.java b/src/utils/lombok/core/LombokImmutableList.java
index 8b478dbc..e0e1136c 100644
--- a/src/utils/lombok/core/ImmutableList.java
+++ b/src/utils/lombok/core/LombokImmutableList.java
@@ -28,36 +28,36 @@ import java.util.Iterator;
import java.util.List;
import java.util.NoSuchElementException;
-public final class ImmutableList<T> implements Iterable<T> {
+public final class LombokImmutableList<T> implements Iterable<T> {
private Object[] content;
- private static final ImmutableList<?> EMPTY = new ImmutableList<Object>(new Object[0]);
+ private static final LombokImmutableList<?> EMPTY = new LombokImmutableList<Object>(new Object[0]);
@SuppressWarnings("unchecked")
- public static <T> ImmutableList<T> of() {
- return (ImmutableList<T>) EMPTY;
+ public static <T> LombokImmutableList<T> of() {
+ return (LombokImmutableList<T>) EMPTY;
}
- public static <T> ImmutableList<T> of(T a) {
- return new ImmutableList<T>(new Object[] {a});
+ public static <T> LombokImmutableList<T> of(T a) {
+ return new LombokImmutableList<T>(new Object[] {a});
}
- public static <T> ImmutableList<T> of(T a, T b) {
- return new ImmutableList<T>(new Object[] {a, b});
+ public static <T> LombokImmutableList<T> of(T a, T b) {
+ return new LombokImmutableList<T>(new Object[] {a, b});
}
- public static <T> ImmutableList<T> of(T a, T b, T c) {
- return new ImmutableList<T>(new Object[] {a, b, c});
+ public static <T> LombokImmutableList<T> of(T a, T b, T c) {
+ return new LombokImmutableList<T>(new Object[] {a, b, c});
}
- public static <T> ImmutableList<T> of(T a, T b, T c, T d) {
- return new ImmutableList<T>(new Object[] {a, b, c, d});
+ public static <T> LombokImmutableList<T> of(T a, T b, T c, T d) {
+ return new LombokImmutableList<T>(new Object[] {a, b, c, d});
}
- public static <T> ImmutableList<T> of(T a, T b, T c, T d, T e) {
- return new ImmutableList<T>(new Object[] {a, b, c, d, e});
+ public static <T> LombokImmutableList<T> of(T a, T b, T c, T d, T e) {
+ return new LombokImmutableList<T>(new Object[] {a, b, c, d, e});
}
- public static <T> ImmutableList<T> of(T a, T b, T c, T d, T e, T f, T... g) {
+ public static <T> LombokImmutableList<T> of(T a, T b, T c, T d, T e, T f, T... g) {
Object[] rest = g == null ? new Object[] {null} : g;
Object[] val = new Object[rest.length + 6];
System.arraycopy(rest, 0, val, 6, rest.length);
@@ -67,43 +67,43 @@ public final class ImmutableList<T> implements Iterable<T> {
val[3] = d;
val[4] = e;
val[5] = f;
- return new ImmutableList<T>(val);
+ return new LombokImmutableList<T>(val);
}
- public static <T> ImmutableList<T> copyOf(Collection<? extends T> list) {
- return new ImmutableList<T>(list.toArray());
+ public static <T> LombokImmutableList<T> copyOf(Collection<? extends T> list) {
+ return new LombokImmutableList<T>(list.toArray());
}
- public static <T> ImmutableList<T> copyOf(Iterable<? extends T> iterable) {
+ public static <T> LombokImmutableList<T> copyOf(Iterable<? extends T> iterable) {
List<T> list = new ArrayList<T>();
for (T o : iterable) list.add(o);
return copyOf(list);
}
- private ImmutableList(Object[] content) {
+ private LombokImmutableList(Object[] content) {
this.content = content;
}
- public ImmutableList<T> replaceElementAt(int idx, T newValue) {
+ public LombokImmutableList<T> replaceElementAt(int idx, T newValue) {
Object[] newContent = content.clone();
newContent[idx] = newValue;
- return new ImmutableList<T>(newContent);
+ return new LombokImmutableList<T>(newContent);
}
- public ImmutableList<T> append(T newValue) {
+ public LombokImmutableList<T> append(T newValue) {
int len = content.length;
Object[] newContent = new Object[len + 1];
System.arraycopy(content, 0, newContent, 0, len);
newContent[len] = newValue;
- return new ImmutableList<T>(newContent);
+ return new LombokImmutableList<T>(newContent);
}
- public ImmutableList<T> prepend(T newValue) {
+ public LombokImmutableList<T> prepend(T newValue) {
int len = content.length;
Object[] newContent = new Object[len + 1];
System.arraycopy(content, 0, newContent, 1, len);
newContent[0] = newValue;
- return new ImmutableList<T>(newContent);
+ return new LombokImmutableList<T>(newContent);
}
public int indexOf(T val) {
@@ -117,17 +117,17 @@ public final class ImmutableList<T> implements Iterable<T> {
return -1;
}
- public ImmutableList<T> removeElement(T val) {
+ public LombokImmutableList<T> removeElement(T val) {
int idx = indexOf(val);
return idx == -1 ? this : removeElementAt(idx);
}
- public ImmutableList<T> removeElementAt(int idx) {
+ public LombokImmutableList<T> removeElementAt(int idx) {
int len = content.length;
Object[] newContent = new Object[len - 1];
if (idx > 0) System.arraycopy(content, 0, newContent, 0, idx);
if (idx < len - 1) System.arraycopy(content, idx + 1, newContent, idx, len - idx - 1);
- return new ImmutableList<T>(newContent);
+ return new LombokImmutableList<T>(newContent);
}
public boolean isEmpty() {
@@ -177,9 +177,9 @@ public final class ImmutableList<T> implements Iterable<T> {
}
@Override public boolean equals(Object obj) {
- if (!(obj instanceof ImmutableList)) return false;
+ if (!(obj instanceof LombokImmutableList)) return false;
if (obj == this) return true;
- return Arrays.equals(content, ((ImmutableList<?>) obj).content);
+ return Arrays.equals(content, ((LombokImmutableList<?>) obj).content);
}
@Override public int hashCode() {