@ -37,9 +37,9 @@ public class CallPanel
{
private final TransparentPanel mainPanel = new TransparentPanel ( ) ;
private final Hashtable < CallPeer , CallP articipant Panel>
private final Hashtable < CallPeer , CallP eer Panel>
participantsPanels =
new Hashtable < CallPeer , CallP articipant Panel> ( ) ;
new Hashtable < CallPeer , CallP eer Panel> ( ) ;
private String title ;
@ -85,16 +85,16 @@ public CallPanel(CallDialog callDialog, Call call, String callType)
* @param participant the call participant
* @param callType the type of call - INCOMING of OUTGOING
* /
private CallP articipant Panel addCallParticipant (
private CallP eer Panel addCallParticipant (
CallPeer participant , String callType )
{
CallP articipant Panel participantPanel =
CallP eer Panel participantPanel =
getParticipantPanel ( participant ) ;
if ( participantPanel = = null )
{
participantPanel
= new CallP articipant Panel( callDialog , participant ) ;
= new CallP eer Panel( callDialog , participant ) ;
this . mainPanel . add ( participantPanel ) ;
@ -154,7 +154,7 @@ public void callPeerRemoved(CallPeerEvent evt)
{
CallPeer participant = evt . getSourceCallPeer ( ) ;
CallP articipant Panel participantPanel =
CallP eer Panel participantPanel =
getParticipantPanel ( participant ) ;
if ( participantPanel ! = null )
@ -196,7 +196,7 @@ public void peerStateChanged(CallPeerChangeEvent evt)
if ( sourceParticipant . getCall ( ) ! = call )
return ;
CallP articipant Panel participantPanel =
CallP eer Panel participantPanel =
getParticipantPanel ( sourceParticipant ) ;
Object newState = evt . getNewValue ( ) ;
@ -274,7 +274,7 @@ public void securityOn(CallPeerSecurityOnEvent securityEvent)
{
CallPeer participant =
( CallPeer ) securityEvent . getSource ( ) ;
CallP articipant Panel participantPanel =
CallP eer Panel participantPanel =
getParticipantPanel ( participant ) ;
participantPanel . setSecured ( true ) ;
@ -300,7 +300,7 @@ public void securityOff(CallPeerSecurityOffEvent securityEvent)
{
CallPeer participant =
( CallPeer ) securityEvent . getSource ( ) ;
CallP articipant Panel participantPanel =
CallP eer Panel participantPanel =
getParticipantPanel ( participant ) ;
participantPanel . setSecured ( false ) ;
@ -386,7 +386,7 @@ public RemoveParticipantPanelListener(CallPeer participant)
public void actionPerformed ( ActionEvent e )
{
CallP articipant Panel participantPanel =
CallP eer Panel participantPanel =
participantsPanels . get ( participant ) ;
mainPanel . remove ( participantPanel ) ;
@ -402,7 +402,7 @@ public void actionPerformed(ActionEvent e)
* @return an < tt > Iterator < / tt > over a list of all participant panels
* contained in this call panel
* /
public Iterator < CallP articipant Panel> getParticipantPanels ( )
public Iterator < CallP eer Panel> getParticipantPanels ( )
{
return participantsPanels . values ( ) . iterator ( ) ;
}
@ -425,9 +425,9 @@ public int getParticipantCount()
* @return the < tt > CallParticipantPanel < / tt > , which correspond to the given
* participant
* /
public CallP articipant Panel getParticipantPanel ( CallPeer participant )
public CallP eer Panel getParticipantPanel ( CallPeer participant )
{
for ( Map . Entry < CallPeer , CallP articipant Panel> participantEntry :
for ( Map . Entry < CallPeer , CallP eer Panel> participantEntry :
participantsPanels . entrySet ( ) )
{
CallPeer entryParticipant = participantEntry . getKey ( ) ;
@ -494,7 +494,7 @@ public void propertyChange(PropertyChangeEvent evt)
if ( sourceParticipant . getCall ( ) ! = call )
return ;
CallP articipant Panel participantPanel =
CallP eer Panel participantPanel =
getParticipantPanel ( sourceParticipant ) ;
if ( isMute )