Skip to main content
summaryrefslogtreecommitdiffstats
blob: f8f12da92ec59de32c29f067fb6ed952d68bf107 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.wst.ws.internal.datamodel;

public class BasicConnection implements Connection
{

  // Copyright
  public static final String copyright = "(c) Copyright IBM Corporation 2000, 2002.";

  private Rel fRel;
  private Element fElement;
  private Connection fOpposingConnection;

  public static final int OUTBOUND = 0;
  public static final int INBOUND = 1;

  public static Connection[] createPair ( Rel outboundRel, Element targetElement, Rel inboundRel, Element sourceElement )
  {
    BasicConnection outboundConnection = new BasicConnection(outboundRel,targetElement);
    BasicConnection inboundConnection = new BasicConnection(inboundRel,sourceElement);
    outboundConnection.fOpposingConnection = inboundConnection;
    inboundConnection.fOpposingConnection = outboundConnection;
    return new Connection[] {outboundConnection,inboundConnection};
  }

  public BasicConnection ( Rel rel, Element element )
  {
    fRel = rel;
    fElement = element;
    fOpposingConnection = null;
  }

  public Rel getRel ()
  {
    return fRel;
  }

  public Element getElement ()
  {
    return fElement;
  }

  public Connection getOpposingConnection ()
  {
    return fOpposingConnection;
  }

  public String toString ()
  {
    return fElement.getName();
  }
}

Back to the top