// 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.data.object.alarm; import android.content.ContentValues; import android.database.Cursor; // Referenced classes of package com.olio.data.object.alarm: // AlarmModel static final class rd.RecordField implements com.olio.olios.model.record.d.RecordField { public void assignFromCursor(AlarmModel alarmmodel, Cursor cursor) { boolean flag = true; if (cursor.getInt(6) != 1) { flag = false; } alarmmodel.setEnabled(flag); } public volatile void assignFromCursor(Object obj, Cursor cursor) { assignFromCursor((AlarmModel)obj, cursor); } public String columnName() { return "enabled"; } public String createType() { return "INTEGER"; } public void writeToContentValues(AlarmModel alarmmodel, ContentValues contentvalues) { String s = columnName(); int i; if (alarmmodel.isEnabled()) { i = 1; } else { i = 0; } contentvalues.put(s, Integer.valueOf(i)); } public volatile void writeToContentValues(Object obj, ContentValues contentvalues) { writeToContentValues((AlarmModel)obj, contentvalues); } rd.RecordField() { } }