1 /* 2 * Copyright (C) 2015 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.contacts.common.model; 18 19 import android.content.ContentProviderOperation.Builder; 20 21 /** 22 * This class is created for the purpose of compatibility and make the type of 23 * ContentProviderOperation available on pre-M SDKs. Since ContentProviderOperation is usually 24 * created by Builder and we dont have access to the type via Builder, so we need to create a 25 * wrapper class for Builder first and include type. Then we could use the builder and the type in 26 * this class to create a wrapper of ContentProviderOperation. 27 */ 28 public class BuilderWrapper { 29 30 private Builder mBuilder; 31 private int mType; 32 33 public BuilderWrapper(Builder builder, int type) { 34 mBuilder = builder; 35 mType = type; 36 } 37 38 public int getType() { 39 return mType; 40 } 41 42 public void setType(int mType) { 43 this.mType = mType; 44 } 45 46 public Builder getBuilder() { 47 return mBuilder; 48 } 49 50 public void setBuilder(Builder mBuilder) { 51 this.mBuilder = mBuilder; 52 } 53 } 54