Clover coverage report - Maven Clover report
Coverage timestamp: Tue Sep 16 2008 01:16:37 EEST
file stats: LOC: 62   Methods: 2
NCLOC: 16   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
WGMediatorImpl.java 0% 0% 0% 0%
coverage
 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  0 public WGMediatorImpl(IRI mediatorIRI) {
 39  0 super(mediatorIRI);
 40    }
 41   
 42  0 public boolean equals(Object object) {
 43  0 if (object == null
 44    || false == object instanceof WGMediator) {
 45  0 return false;
 46    }
 47  0 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    */