blob: cdf8345f78b3ad1c4ac2c8912dfc751ad116efa6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.validation.internal.model;
/**
* A mutable object that is used to initialize a GlobalPreference.
* @author karasiuk
*
*/
public class GlobalPreferencesValues {
public boolean disableAllValidation = GlobalPreferences.DefaultSuspend;
public boolean saveAutomatically = GlobalPreferences.DefaultAutoSave;
public boolean confirmDialog = GlobalPreferences.DefaultConfirm;
public boolean override = GlobalPreferences.DefaultOverride;
/** The plug-in state time stamp. */
public long stateTimeStamp;
/** The incoming version of the framework. This is used to determine if a migration is needed.*/
public int version;
public GlobalPreferencesValues(){
}
}