summaryrefslogtreecommitdiffstats
path: root/dx/src/com/android/dx/util/IntSet.java
diff options
context:
space:
mode:
Diffstat (limited to 'dx/src/com/android/dx/util/IntSet.java')
-rw-r--r--dx/src/com/android/dx/util/IntSet.java67
1 files changed, 0 insertions, 67 deletions
diff --git a/dx/src/com/android/dx/util/IntSet.java b/dx/src/com/android/dx/util/IntSet.java
deleted file mode 100644
index 10b6ee047..000000000
--- a/dx/src/com/android/dx/util/IntSet.java
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * Copyright (C) 2008 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.dx.util;
-
-/**
- * A set of integers
- */
-public interface IntSet {
-
- /**
- * Adds an int to a set
- *
- * @param value int to add
- */
- void add(int value);
-
- /**
- * Removes an int from a set.
- *
- * @param value int to remove
- */
- void remove(int value);
-
- /**
- * Checks to see if a value is in the set
- *
- * @param value int to check
- * @return true if in set
- */
- boolean has(int value);
-
- /**
- * Merges <code>other</code> into this set, so this set becomes the
- * union of the two.
- *
- * @param other non-null; other set to merge with.
- */
- void merge(IntSet other);
-
- /**
- * Returns the count of unique elements in this set.
- *
- * @return &gt; = 0; count of unique elements
- */
- int elements();
-
- /**
- * Iterates the set
- *
- * @return non-null; a set iterator
- */
- IntIterator iterator();
-}