// 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.olios.model; import java.lang.annotation.Annotation; public class SyncEndPoint { public static interface EndPoint extends Annotation { } public static final int ALL = 7; public static final int PHONE = 2; public static final int PHONE_WATCH = 3; public static final int PHONE_WEB = 6; public static final int WATCH = 1; public static final int WATCH_WEB = 5; public static final int WEB = 4; public SyncEndPoint() { } public static boolean isAllSyncable(int i) { return (i & 7) == 7; } public static boolean isPhoneSyncable(int i) { return (i & 2) == 2; } public static boolean isWatchSyncable(int i) { return (i & 1) == 1; } public static boolean isWebSyncable(int i) { return (i & 4) == 4; } }