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.
SIPRP/trunk/SIPRPSoft/src/siprp/update/UpdateList.java

32 lines
466 B

/*
* Updater.java
*
* Created on 26 de Setembro de 2006, 11:49
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package siprp.update;
import java.util.List;
import shst.update.SHSTUpdateList;
import com.evolute.module.updater.AbstractUpdate;
/**
*
* @author fpalma
*/
public class UpdateList
{
public static List<AbstractUpdate> getUpdates()
{
return SHSTUpdateList.getUpdatesOnly();
}
}