1 /*
2  * Created on 11-May-2004
3  * Created by Paul Gardner
4  * Copyright (C) Azureus Software, Inc, All Rights Reserved.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17  *
18  */
19 
20 package org.gudy.azureus2.plugins.update;
21 
22 /**
23  * @author parg
24  *
25  */
26 public interface
27 UpdatableComponent
28 {
29 		/**
30 		 * Name of the updatable component
31 		 * @return
32 		 */
33 
34 	public String
getName()35 	getName();
36 
37 		/**
38 		 * estimated maximum time to check whether an update is required or not in SECONDS
39 		 * @return
40 		 */
41 
42 	public int
getMaximumCheckTime()43 	getMaximumCheckTime();
44 
45 	public void
checkForUpdate( UpdateChecker checker )46 	checkForUpdate(
47 		UpdateChecker	checker );
48 }
49