blob: f2f91b224219dd8b0f4d0b6ff0e84c0ef7ef06cb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 1C LLC.
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Vladimir Piskarev (1C) - initial API and implementation
*******************************************************************************/
package org.eclipse.handly.ui.preference;
/**
* Represents an integer-valued preference.
*
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
*/
public interface IIntPreference
extends IPreference
{
/**
* Returns the current value of this preference.
*
* @return the current value of this preference
*/
int getValue();
/**
* Sets the current value of this preference.
* <p>
* A preference change event is reported if the current value
* of the preference actually changes from its previous value.
* </p>
*
* @param value the new current value of this preference
*/
void setValue(int value);
}