Class FileToPathMap
- java.lang.Object
-
- org.eclipse.tycho.p2.impl.publisher.rootfiles.FileToPathMap
-
public class FileToPathMap extends Object
A map using normalized files as keys and (relative) IPaths as values. Only normalized files are used as keys internally.
-
-
Constructor Summary
Constructors Constructor Description FileToPathMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.eclipse.core.runtime.IPathget(File key)Set<File>keySet()voidput(File key, org.eclipse.core.runtime.IPath value)voidputAll(FileToPathMap otherMap)intsize()Collection<org.eclipse.core.runtime.IPath>values()
-
-
-
Method Detail
-
put
public void put(File key, org.eclipse.core.runtime.IPath value)
-
values
public Collection<org.eclipse.core.runtime.IPath> values()
-
get
public org.eclipse.core.runtime.IPath get(File key)
-
putAll
public void putAll(FileToPathMap otherMap)
-
size
public int size()
-
-