blob: 6f32172644963bcf798707b6413e0bee1d6e9867 [file] [log] [blame]
package org.eclipse.dltk.core;
import java.util.Map;
public interface IBuildpathContainerExtension3 {
/**
* Answers container'a additional attributes. May be used to store various
* container data e.g. version identifier.
* <p>
* Should not return <code>null</code>.
* </p>
*
* @return Map<String, String> - collection of attributes
*/
public Map<String, String> getAttributes();
}