Home | History | Annotate | Download | only in data

Lines Matching defs:local

20  * This is a special implementation of ChainedData to be used for holding the local and global Data
21 * objects (like local and global HDFs in Clearsilver). It prevents writes and modifications to the
22 * global Data object and applies them all to the local data object.
26 private final Data local;
29 * Creates a Data object that encapsulates both request-scoped local HDF and an application
33 * @param local the request-specific HDF data that takes priority.
37 public LocalAndGlobalData(Data local, Data global) {
38 this(local, global, false);
42 * Creates a Data object that encapsulates both request-scoped local HDF and an application
47 * @param local the request-specific HDF data that takes priority.
53 * introduce bugs in templates that acquire local references to the global data structure
56 public LocalAndGlobalData(Data local, Data global, boolean allowGlobalDataModification) {
57 super(local, prepareGlobal(global, allowGlobalDataModification));
58 this.local = local;
72 return local.createChild(path);