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.IPath
get(File key)
Set<File>
keySet()
void
put(File key, org.eclipse.core.runtime.IPath value)
void
putAll(FileToPathMap otherMap)
int
size()
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()
-
-