org.eclipse.core.internal.utils
Interface IStringPoolParticipant

All Known Implementing Classes:
MarkerAttributeMap, MarkerInfo, MarkerSet, ObjectMap, ProjectInfo, ResourceInfo, RootInfo, SaveManager

public interface IStringPoolParticipant

A string pool participant is used for sharing strings between several unrelated parties. Typically a single StringPool instance will be created, and a group of participants will be asked to store their strings in the pool. This allows participants to share equal strings without creating explicit dependencies between each other.

Clients may implement this interface.

Since:
3.1
See Also:
StringPool

Method Summary
 void shareStrings(StringPool pool)
          Instructs this participant to share its strings in the provided pool.
 

Method Detail

shareStrings

void shareStrings(StringPool pool)
Instructs this participant to share its strings in the provided pool.