import com.denova.JExpress.Installer.InstallPropertyNames;
import com.denova.io.Log;
import com.denova.ui.WizardPanel;
import com.denova.util.PropertyList;
/**
Set the last modified date on files to the original date.
Copyright 1997-2010 DeNova
Last modified: 2010-12-17
**/
public class SetLastModifiedDate extends WizardPanel
implements InstallPropertyNames
{
private static final Log log = new Log("date");
public SetLastModifiedDate(PropertyList properties)
{
super (properties);
}
/** Enter the panel. */
public void enter()
{
getPropertyList().setBooleanProperty(SetLastModifiedDate, true);
showNextPanel();
}
public String getName ()
{
return "SetLastModifiedDate";
}
}