View Javadoc

1   /*
2    wsmo4j - a WSMO API and Reference Implementation
3   
4    Copyright (c) 2004-2005, OntoText Lab. / SIRMA
5   
6    This library is free software; you can redistribute it and/or modify it under
7    the terms of the GNU Lesser General Public License as published by the Free
8    Software Foundation; either version 2.1 of the License, or (at your option)
9    any later version.
10   This library is distributed in the hope that it will be useful, but WITHOUT
11   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12   FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
13   details.
14   You should have received a copy of the GNU Lesser General Public License along
15   with this library; if not, write to the Free Software Foundation, Inc.,
16   59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17   */
18  
19  package com.ontotext.wsmo4j.mediator;
20  
21  /**
22   * <p>Title: WSMO4J</p>
23   * <p>Description: WSMO API and a Reference Implementation</p>
24   * <p>Copyright:  Copyright (c) 2004-2005</p>
25   * <p>Company: OntoText Lab. / SIRMA </p>
26   * @author not attributable
27   * @version 1.0
28   *
29   */
30  
31  import org.wsmo.common.*;
32  import org.wsmo.mediator.*;
33  
34  
35  public class WGMediatorImpl extends MediatorImpl
36          implements WGMediator {
37  
38      public WGMediatorImpl(IRI mediatorIRI) {
39          super(mediatorIRI);
40      }
41      
42      public boolean equals(Object object) {
43          if (object == null 
44                  || false == object instanceof WGMediator) {
45              return false;
46          }
47          return super.equals(object); 
48      }
49  }
50  
51  /*
52   * $Log$
53   * Revision 1.11  2006/02/13 10:41:04  vassil_momtchev
54   * the constructors of the topentities to disallow Identifier; see WsmoFactoryImpl
55   *
56   * Revision 1.10  2005/06/01 12:07:31  marin_dimitrov
57   * v0.4.0
58   *
59   * Revision 1.1  2005/05/13 14:05:49  alex
60   * initial commit
61   *
62   */