Package com.perforce.p4java.core
Interface IStreamIgnoredMapping
-
- All Superinterfaces:
IMapEntry
- All Known Implementing Classes:
Stream.StreamIgnoredMapping
public interface IStreamIgnoredMapping extends IMapEntry
Define (optional) a list of file or directory names to be ignored in client views. For example:/tmp # ignores files named 'tmp'
/tmp/... # ignores dirs named 'tmp'
.tmp # ignores file names ending in '.tmp'
Mappings in the "Ignored" field may appear in any order. Ignored names are 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getIgnorePath()
Get a stream ignored entry's file path; this corresponds to the left entry of the associated mapping.void
setIgnorePath(java.lang.String ignorePath)
Set a stream ignored entry's left file path; this corresponds to the left entry of the associated mapping.
-
-
-
Method Detail
-
getIgnorePath
java.lang.String getIgnorePath()
Get a stream ignored entry's file path; this corresponds to the left entry of the associated mapping.- Returns:
- ignore path
-
setIgnorePath
void setIgnorePath(java.lang.String ignorePath)
Set a stream ignored entry's left file path; this corresponds to the left entry of the associated mapping.- Parameters:
ignorePath
- ignore path
-
-