package android.telecom;
public abstract class Conference
implements android.telecom.IConferenceable
{
public Conference(android.telecom.PhoneAccountHandle phoneAccount) { throw new RuntimeException("Stub!"); }
public final android.telecom.PhoneAccountHandle getPhoneAccountHandle() { throw new RuntimeException("Stub!"); }
public final java.util.List<android.telecom.Connection> getConnections() { throw new RuntimeException("Stub!"); }
public final int getState() { throw new RuntimeException("Stub!"); }
public final int getConnectionCapabilities() { throw new RuntimeException("Stub!"); }
public final android.telecom.AudioState getAudioState() { throw new RuntimeException("Stub!"); }
public void onDisconnect() { throw new RuntimeException("Stub!"); }
public void onSeparate(android.telecom.Connection connection) { throw new RuntimeException("Stub!"); }
public void onMerge(android.telecom.Connection connection) { throw new RuntimeException("Stub!"); }
public void onHold() { throw new RuntimeException("Stub!"); }
public void onUnhold() { throw new RuntimeException("Stub!"); }
public void onMerge() { throw new RuntimeException("Stub!"); }
public void onSwap() { throw new RuntimeException("Stub!"); }
public void onPlayDtmfTone(char c) { throw new RuntimeException("Stub!"); }
public void onStopDtmfTone() { throw new RuntimeException("Stub!"); }
public void onAudioStateChanged(android.telecom.AudioState state) { throw new RuntimeException("Stub!"); }
public void onConnectionAdded(android.telecom.Connection connection) { throw new RuntimeException("Stub!"); }
public final void setOnHold() { throw new RuntimeException("Stub!"); }
public final void setActive() { throw new RuntimeException("Stub!"); }
public final void setDisconnected(android.telecom.DisconnectCause disconnectCause) { throw new RuntimeException("Stub!"); }
public final android.telecom.DisconnectCause getDisconnectCause() { throw new RuntimeException("Stub!"); }
public final void setConnectionCapabilities(int connectionCapabilities) { throw new RuntimeException("Stub!"); }
public final boolean addConnection(android.telecom.Connection connection) { throw new RuntimeException("Stub!"); }
public final void removeConnection(android.telecom.Connection connection) { throw new RuntimeException("Stub!"); }
public final void setConferenceableConnections(java.util.List<android.telecom.Connection> conferenceableConnections) { throw new RuntimeException("Stub!"); }
public final java.util.List<android.telecom.Connection> getConferenceableConnections() { throw new RuntimeException("Stub!"); }
public final void destroy() { throw new RuntimeException("Stub!"); }
public android.telecom.Connection getPrimaryConnection() { throw new RuntimeException("Stub!"); }
public void setConnectTimeMillis(long connectTimeMillis) { throw new RuntimeException("Stub!"); }
public long getConnectTimeMillis() { throw new RuntimeException("Stub!"); }
public static long CONNECT_TIME_NOT_SPECIFIED;
protected android.telecom.PhoneAccountHandle mPhoneAccount;
}
|