// 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.unit; import android.content.ContentValues; import android.database.Cursor; // Referenced classes of package com.olio.data.object.unit: // FirmwareProfile static final class ecordField implements com.olio.olios.model.record.ordField { public void assignFromCursor(FirmwareProfile firmwareprofile, Cursor cursor) { firmwareprofile.setVersion(cursor.getString(0)); } public volatile void assignFromCursor(Object obj, Cursor cursor) { assignFromCursor((FirmwareProfile)obj, cursor); } public String columnName() { return "version"; } public String createType() { return "TEXT"; } public void writeToContentValues(FirmwareProfile firmwareprofile, ContentValues contentvalues) { contentvalues.put(columnName(), firmwareprofile.getVersion()); } public volatile void writeToContentValues(Object obj, ContentValues contentvalues) { writeToContentValues((FirmwareProfile)obj, contentvalues); } ecordField() { } }