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 Details

    • PartBasedScopingUtils

      public PartBasedScopingUtils()
  • Method Details

    • partArray

      public 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.
    • partArrayPair

      public 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).
    • partList

      public static List<String> partList(String... source)
    • partSet

      public static Set<String> partSet(String... source)