// 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; // Referenced classes of package com.olio.communication.notifications: // NavigationNotification public class NavigationNotificationBuilder { NavigationNotification navigationNotification; public NavigationNotificationBuilder() { navigationNotification = new NavigationNotification(); } public NavigationNotification build() { return navigationNotification; } public NavigationNotificationBuilder setDirection(int i) { navigationNotification.direction = i; return this; } public NavigationNotificationBuilder setDistance(int i) { navigationNotification.distance = i; return this; } public NavigationNotificationBuilder setTarget(String s) { navigationNotification.target = s; return this; } public NavigationNotificationBuilder setTimestamp(long l) { navigationNotification.timestamp = l; return this; } public NavigationNotificationBuilder setUnit(int i) { navigationNotification.unit = i; return this; } }