You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Serialization/OPNLib/Serialize/Adaptor.cls
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -29,20 +29,20 @@ Method Export(pMapTemplatesClass As %String = "", pMethodMap As %String = "", pI
29
29
30
30
return $$$NULLOREF
31
31
}
32
-
/// It imports the data from pInObject to the instance that is calling the method
33
-
/// pInObject will be an object (%DynamicObject, %XML,...) with data to load to current object through the mechanism established by pMethodMap implemented in pMapTemplatesClass
34
-
/// pMethodMap - Method chosen to import data. That method implements the logic to import data in this type of objects. Depending on the logic that data could come in different formats.
35
-
/// By default, if no pMethodMap is indicated, it will use <b>importStd</b> that expects the import data in JSON format
36
-
/// pMapTemplatesClass - Class in which it is the pMethodMap.
37
-
/// This class could contain other methods to import/export data from this type of objects using different mechanisms and/or formats.
38
-
/// By default, if no pMapTemplatesClass is indicated, and no pMethodMap, it'll be used <b>importStd</b>
39
-
/// pDrillDown - Indicates the levels to follow the chain of references if the object include references to other objects, arrays/list of objects or relationships.
32
+
/// It imports the data from <var>pInObject</var> to the instance that is calling the method
33
+
/// <var>pInObject</var> will be an object (%DynamicObject, %XML,...) with data to load to current object through the mechanism established by pMethodMap implemented in pMapTemplatesClass
34
+
/// <var>pDrillDown</var> - Indicates the levels to follow the chain of references if the object include references to other objects, arrays/list of objects or relationships.
40
35
/// -1 (default): Apply DrillDown defined in the MAP for each property
41
36
/// 0 : No drill down (but include OREF if EXPTINCLUDEORED=1 in the object class definition)
42
-
/// pArgs - Included for flexibility.
37
+
/// <var>pMapTemplatesClass</var> - Class in which it is the pMethodMap.
38
+
/// This class could contain other methods to import/export data from this type of objects using different mechanisms and/or formats.
39
+
/// By default, if no pMapTemplatesClass is indicated, and no pMethodMap, it'll be used <b>importStd</b>
40
+
/// <var>pMethodMap</var> - Method chosen to import data. That method implements the logic to import data in this type of objects. Depending on the logic that data could come in different formats.
41
+
/// By default, if no pMethodMap is indicated, it will use <b>importStd</b> that expects the import data in JSON format
42
+
/// <var>pArgs</var> - Included for flexibility.
43
43
/// - pArg(1) : <MAP to use> Used for export/import default mechanism. Includes the MAP name to use to export/import.
44
44
/// If pArg(1) is null, it'll be used the default MAP (as defined in EXPTDEFAULTMAP parameter of object class definition)
// We should populate incoming pObject with XML content.. Current logic based on XMLReader creates from scratch the objects which makes very difficult to use that logic
0 commit comments