com.businessobjects.sdk.plugin.desktop.common
Interface IIntegerProps

All Superinterfaces:
java.util.Collection, ISDKSet, java.lang.Iterable, java.util.Set

public interface IIntegerProps
extends ISDKSet

This interface provides access to a collection of Integers.


Method Summary
 boolean add(java.lang.Object val)
          Adds an Integer to the collection.
 boolean remove(java.lang.Integer val)
          Removes an Integer from the collection.
 
Methods inherited from interface com.crystaldecisions.sdk.properties.ISDKSet
get
 
Methods inherited from interface java.util.Set
addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
 

Method Detail

add

boolean add(java.lang.Object val)
Adds an Integer to the collection.

Specified by:
add in interface java.util.Collection
Specified by:
add in interface java.util.Set
Parameters:
val - An Integer.
Returns:
true if the Integer is added to the collection, false otherwise.

remove

boolean remove(java.lang.Integer val)
Removes an Integer from the collection.

Parameters:
val - An integer.
Returns:
true if the Integer is removed from the collection, false otherwise.