Package com._1c.g5.v8.derived.context
Class PartBasedScopingUtils
- java.lang.Object
- 
- com._1c.g5.v8.derived.context.PartBasedScopingUtils
 
- 
 public class PartBasedScopingUtils extends Object Basic set of standard tools for building up rebuild scope collectors based on DD parts principle.
- 
- 
Constructor SummaryConstructors Constructor Description PartBasedScopingUtils()
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static String[]partArray(String... source)Helper which groups a variable set of DS parts into a single array.static String[][]partArrayPair(String[] syncParts, String[] asyncParts)Helper which groups a variable set of DS parts for both sync.static List<String>partList(String... source)static Set<String>partSet(String... source)
 
- 
- 
- 
Method Detail- 
partArraypublic static String[] partArray(String... source) Helper which groups a variable set of DS parts into a single array.- Parameters:
- Source- set of parts.
- Returns:
- Parts as an array.
 
 - 
partArrayPairpublic static String[][] partArrayPair(String[] syncParts, String[] asyncParts) Helper which groups a variable set of DS parts for both sync. and async. DS.- Parameters:
- syncParts- Sync part set. Could be null.
- asyncParts- Async. part set. Could be null.
- Returns:
- The paired part set in strict order (sync first followed by async).
 
 
- 
 
-