/* * @(#)RemoteParticipant.java 1.6 02/08/21 * * Copyright (c) 1996-2002 Sun Microsystems, Inc. All rights reserved. */ package javax.media.rtp; import java.util.Vector; /** * Interface representing remote participants. See Participant for details. * This interface is subclassed from Participant and is an empty * interface. It is a "marker interface" for semantic usage in an RTP * Session. * */ public interface RemoteParticipant extends Participant { }