forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
393 B
23 lines
393 B
/*
|
|
* Update.java
|
|
*
|
|
* Created on 26 de Setembro de 2006, 12:13
|
|
*
|
|
* To change this template, choose Tools | Template Manager
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package siprp.update;
|
|
|
|
/**
|
|
*
|
|
* @author fpalma
|
|
*/
|
|
public interface Update
|
|
{
|
|
public double getStartVersion();
|
|
public double getEndVersion();
|
|
public String[] listChanges();
|
|
public void doUpdate() throws Exception;
|
|
}
|