Package net.sf.okapi.filters.openxml
Interface MergeableRunProperty
-
public interface MergeableRunPropertyProvides a mergeable run property interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancanBeMerged(MergeableRunProperty runProperty)Checks whether a run property can be merged with another.MergeableRunPropertymerge(MergeableRunProperty runProperty)Merges a run property with another.
-
-
-
Method Detail
-
canBeMerged
boolean canBeMerged(MergeableRunProperty runProperty)
Checks whether a run property can be merged with another.- Parameters:
runProperty- A run property to merge with- Returns:
trueif a property can be mergedfalseotherwise
-
merge
MergeableRunProperty merge(MergeableRunProperty runProperty)
Merges a run property with another.- Parameters:
runProperty- A run property to merge with- Returns:
- A merged run property
-
-