blob: ab56887431c787379344fd0c40937442ef48048a [file] [log] [blame]
/*
* Copyright (c) 2014 Eike Stepper (Berlin, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.oomph.version;
import org.eclipse.core.resources.IProject;
import java.io.Serializable;
import java.util.Map;
/**
* Provides access to those parts of a {@link IProject project}'s build state that {@link VersionValidator version validators} need to access.
*
* @author Eike Stepper
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IBuildState
{
public long getValidatorTimeStamp();
public void setValidatorTimeStamp(long validatorTimeStamp);
public Serializable getValidatorState();
public void setValidatorState(Serializable validatorState);
public void setChangedSinceRelease(boolean changedSinceRelease);
public Map<String, String> getArguments();
public void setArguments(Map<String, String> arguments);
}