Search in sources :

Example 1 with ArrayMap

use of org.eclipse.jst.jsp.core.internal.java.ArrayMap in project webtools.sourceediting by eclipse.

the class ProjectDescription method getImplicitReferences.

/**
 * @return Returns the implicitReferences for the given path
 */
ArrayMap getImplicitReferences(String path) {
    String localRoot = getLocalRoot(path);
    ArrayMap implicitReferences = (ArrayMap) fImplicitReferences.get(localRoot);
    if (implicitReferences == null) {
        implicitReferences = new ArrayMap(1);
        fImplicitReferences.put(localRoot, implicitReferences);
    }
    return implicitReferences;
}
Also used : ArrayMap(org.eclipse.jst.jsp.core.internal.java.ArrayMap)

Aggregations

ArrayMap (org.eclipse.jst.jsp.core.internal.java.ArrayMap)1