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  public class GGMediatorImpl extends MediatorImpl 
35          implements GGMediator {
36  
37      public GGMediatorImpl(IRI mediatorIRI) {
38          super(mediatorIRI);
39      }
40  
41      public boolean equals(Object object) {
42          if (object == null 
43                  || false == object instanceof GGMediator) {
44              return false;
45          }
46          return super.equals(object);
47      }
48  }
49  
50  /*
51   * $Log$
52   * Revision 1.13  2006/02/13 10:41:04  vassil_momtchev
53   * the constructors of the topentities to disallow Identifier; see WsmoFactoryImpl
54   *
55   * Revision 1.12  2005/06/01 12:07:31  marin_dimitrov
56   * v0.4.0
57   *
58   * Revision 1.1  2005/05/13 14:05:48  alex
59   * initial commit
60   *
61   */