// 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.ui; // Referenced classes of package com.olio.data.object.unit.ui: // WatchUi public class WatchUiBuilder { private int versionNumber; private WatchUi.WatchFaceMode watchFaceMode; private WatchUiBuilder() { } public static WatchUiBuilder aWatchUi() { return new WatchUiBuilder(); } public WatchUi build() { WatchUi watchui = new WatchUi(); watchui.setWatchFaceMode(watchFaceMode); watchui.setVersionNumber(versionNumber); return watchui; } public WatchUiBuilder setVersionNumber(int i) { versionNumber = i; return this; } public WatchUiBuilder setWatchFaceMode(WatchUi.WatchFaceMode watchfacemode) { watchFaceMode = watchfacemode; return this; } }