~ubuntu-branches/ubuntu/precise/jcsp/precise

« back to all changes in this revision

Viewing changes to src/org/jcsp/net2/NetAltingChannelInput.java

  • Committer: Bazaar Package Importer
  • Author(s): Miguel Landaeta
  • Date: 2010-06-20 18:12:26 UTC
  • Revision ID: james.westby@ubuntu.com-20100620181226-8yg8d9rjjjiuy7oz
Tags: upstream-1.1-rc4
ImportĀ upstreamĀ versionĀ 1.1-rc4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.jcsp.net2;
 
2
 
 
3
import org.jcsp.lang.AltingChannelInput;
 
4
import org.jcsp.lang.AltingChannelInputWrapper;
 
5
 
 
6
/**
 
7
 * A NetChannelInput that may be used as a guard. This class describes the abstract interface of such a channel. To
 
8
 * create an instance of this class, use the standard NetChannel factory, or the CNS. For information on the usage of
 
9
 * this object, see AltingChannelInput
 
10
 * 
 
11
 * @see AltingChannelInput
 
12
 * @see org.jcsp.lang.ChannelInput
 
13
 * @see NetChannelInput
 
14
 * @see NetChannel
 
15
 * @author Quickstone Technologies
 
16
 */
 
17
public abstract class NetAltingChannelInput
 
18
    extends AltingChannelInputWrapper
 
19
    implements NetChannelInput
 
20
{
 
21
 
 
22
    /**
 
23
     * Creates a new NetAltingChannelInput, with the given channel as the guard
 
24
     * 
 
25
     * @param in
 
26
     *            The channel that is used within the alternative
 
27
     */
 
28
    protected NetAltingChannelInput(AltingChannelInput in)
 
29
    {
 
30
        super(in);
 
31
    }
 
32
}