// 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.actions; // Referenced classes of package com.olio.communication.actions: // ActionBuilder, PhoneCallAction, Action public class PhoneCallActionBuilder extends ActionBuilder { private PhoneCallAction mPhoneCallAction; public PhoneCallActionBuilder() { mPhoneCallAction = new PhoneCallAction(); } public PhoneCallAction build() { return mPhoneCallAction; } protected volatile Action getAction() { return getAction(); } protected PhoneCallAction getAction() { return mPhoneCallAction; } protected volatile ActionBuilder getThis() { return getThis(); } protected PhoneCallActionBuilder getThis() { return this; } public PhoneCallActionBuilder setPhoneCallAction(PhoneCallAction.Action action) { getAction().setAction(action); return this; } }