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

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

public interface IStringProps
extends ISDKSet

This interface provides access to a collection of Strings.


Method Summary
 boolean add(java.lang.Object val)
          Adds a String to the collection.
 boolean remove(java.lang.String val)
          Removes a String 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 a String to the collection.

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

remove

boolean remove(java.lang.String val)
Removes a String from the collection.

Parameters:
val - The String to remove from the collection.
Returns:
true if the String is removed from the collection, false otherwise.