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

« back to all changes in this revision

Viewing changes to src/org/jcsp/lang/BasicOne2OneChannelSymmetric.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
 
 
2
  /*************************************************************************
 
3
  *                                                                        *
 
4
  *  JCSP ("CSP for Java") libraries                                       *
 
5
  *  Copyright (C) 1996-2001 Peter Welch and Paul Austin.                  *
 
6
  *                                                                        *
 
7
  *  This library is free software; you can redistribute it and/or         *
 
8
  *  modify it under the terms of the GNU Lesser General Public            *
 
9
  *  License as published by the Free Software Foundation; either          *
 
10
  *  version 2.1 of the License, or (at your option) any later version.    *
 
11
  *                                                                        *
 
12
  *  This library is distributed in the hope that it will be useful,       *
 
13
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
14
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     *
 
15
  *  Lesser General Public License for more details.                       *
 
16
  *                                                                        *
 
17
  *  You should have received a copy of the GNU Lesser General Public      *
 
18
  *  License along with this library; if not, write to the Free Software   *
 
19
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,  *
 
20
  *  USA.                                                                  *
 
21
  *                                                                        *
 
22
  *  Author contact: P.H.Welch@kent.ac.uk                                   *
 
23
  *                                                                        *
 
24
  *************************************************************************/
 
25
 
 
26
package org.jcsp.lang;
 
27
 
 
28
class BasicOne2OneChannelSymmetric implements One2OneChannelSymmetric {
 
29
 
 
30
  private final AltingBarrier[] ab = AltingBarrier.create (2);
 
31
 
 
32
  private final One2OneChannel c = Channel.one2one();
 
33
 
 
34
  public AltingChannelInput in () {
 
35
    return new AltingChannelInputSymmetricImpl (ab[0], c.in());
 
36
  }
 
37
 
 
38
  public AltingChannelOutput out (){
 
39
    return new AltingChannelOutputSymmetricImpl (ab[1], c.out());
 
40
  }
 
41
 
 
42
}