| Agent |
/*
This file is part of Sight code generator system for data-mining robots.
Sight code generator system for data-mining robots is free software;
you can redistribute it and/or modify it under the terms of the
GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Foobar is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Foobar; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA or
try URL http://www.gnu.org/licenses/.
* @institution Ulm university
* @version 2.1.0
* @copyright Ulm university, Frank Lehmann Horn,
* Karin Jurkat-Rott and Audrius Meskauskas. There four
* authors and copyright holders are independent and each of them has
* right to release subsequent versions of this software
* under any chosen license and without permission from others.
* Released under General Public License (GPL).
* @programmer Dr Audrius Meskauskas
*/
package Sight.Agents;
/**
* Class, used a a commoon ancestor for all Internet robots.
*/
public class Agent extends Sight.core.sAgent implements java.io.Serializable
{
public Agent() {};
}| Agent |