blob: d1ec451e43743bfb49818fbb9de2bb9049665a05 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM - Initial API and implementation
*******************************************************************************/
package org.eclipse.core.internal.utils;
/**
* A string pool participant is used for sharing strings between several
* unrelated parties. Typically a single <code>StringPool</code> 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.
* <p>
* Clients may implement this interface.
* </p>
*
* @see StringPool
* @since 3.1
*/
public interface IStringPoolParticipant {
/**
* Instructs this participant to share its strings in the provided
* pool.
*/
void shareStrings(StringPool pool);
}