// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.olio.communication.notifications.mappers.rule; import android.content.ContentResolver; import android.content.Context; import com.olio.communication.notifications.mappers.AssistantMapper; import com.olio.communication.notifications.new_notifications.StreamItemBuilder; import com.olio.data.object.assistant.rule.Rule; public abstract class ContextualRuleMapper implements AssistantMapper { ContentResolver contentResolver; Context context; Rule rule; public ContextualRuleMapper(Context context1, Rule rule1) { context = context1; rule = rule1; contentResolver = context1.getContentResolver(); } protected abstract void contextMatchedApplyRule(StreamItemBuilder streamitembuilder); public Rule getRule() { return rule; } public void map(StreamItemBuilder streamitembuilder, Object obj) { contextMatchedApplyRule(streamitembuilder); } public String toString() { return (new StringBuilder()).append("ContextualRuleMapper{, rule=").append(rule).append('}').toString(); } }