/// <summary> /// Adds some mapping to the aggregation {@link #getMappings mappings}. /// </summary> /// <param name="oMapping">The mapping to add; if empty, nothing is inserted</param> /// <returns>Reference to <code>this</code> in order to allow method chaining</returns> public extern virtual sap.uxap.BlockBase addMapping(sap.uxap.ModelMapping oMapping);
/// <summary> /// Checks for the provided <code>sap.uxap.ModelMapping</code> in the aggregation {@link #getMappings mappings}. and returns its index if found or -1 otherwise. /// </summary> /// <param name="oMapping">The mapping whose index is looked for</param> /// <returns>The index of the provided control in the aggregation if found, or -1 otherwise</returns> public extern virtual int indexOfMapping(sap.uxap.ModelMapping oMapping);
/// <summary> /// Inserts a mapping into the aggregation {@link #getMappings mappings}. /// </summary> /// <param name="oMapping">The mapping to insert; if empty, nothing is inserted</param> /// <param name="iIndex">The <code>0</code>-based index the mapping should be inserted at; for a negative value of <code>iIndex</code>, the mapping is inserted at position 0; for a value greater than the current size of the aggregation, the mapping is inserted at the last position</param> /// <returns>Reference to <code>this</code> in order to allow method chaining</returns> public extern virtual sap.uxap.BlockBase insertMapping(sap.uxap.ModelMapping oMapping, int iIndex);