Package com.perforce.p4java.core
Interface IStreamRemappedMapping
- All Superinterfaces:
IMapEntry
- All Known Implementing Classes:
Stream.StreamRemappedMapping
Define (optional) an individual stream view path is to be remapped in client
view. Each remapped mapping is of the form:
<view_path_1> <view_path_2>
where <view_path_1> and <view_path_2> are Perforce view paths with no leading
slashes and no leading or embedded wildcards. For example:
... x/...
y/* y/z/*
Line ordering in the Remapped field is significant; if more than one line remaps the same files, the later line has precedence. Remapping is inherited by child stream client views.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.perforce.p4java.core.IMapEntry
IMapEntry.EntryType -
Field Summary
Fields inherited from interface com.perforce.p4java.core.IMapEntry
ORDER_UNKNOWN -
Method Summary
Modifier and TypeMethodDescriptionGet a stream remapped entry's left remap path; this corresponds to the left entry of the associated mapping.Get a stream remapped entry's right remap path; this corresponds to the right entry of the associated mapping.voidsetLeftRemapPath(String leftRemapPath) Set a stream remapped entry's left remap path; this corresponds to the left entry of the associated mapping.voidsetRightRemapPath(String rightRemapPath) Set a stream remapped entry's right remap path; this corresponds to the right entry of the associated mapping.
-
Method Details
-
getLeftRemapPath
String getLeftRemapPath()Get a stream remapped entry's left remap path; this corresponds to the left entry of the associated mapping.- Returns:
- left remapped path
-
setLeftRemapPath
Set a stream remapped entry's left remap path; this corresponds to the left entry of the associated mapping.- Parameters:
leftRemapPath- left remapped path
-
getRightRemapPath
String getRightRemapPath()Get a stream remapped entry's right remap path; this corresponds to the right entry of the associated mapping.- Returns:
- right remapped path
-
setRightRemapPath
Set a stream remapped entry's right remap path; this corresponds to the right entry of the associated mapping.- Parameters:
rightRemapPath- right remapped path
-