Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f88761bd5b5b4ef8da27507ce985a5f4e71cd9c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*******************************************************************************
 * Copyright (c) 2009, 2011 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.e4.core.internal.contexts;

import java.util.Set;
import org.eclipse.e4.core.internal.contexts.EclipseContext.Scheduled;

abstract public class Computation {

	protected boolean validComputation = true;

	public void handleInvalid(ContextChangeEvent event, Set<Scheduled> scheduled) {
		invalidateComputation();
	}

	public boolean isValid() {
		return validComputation;
	}

	public void invalidateComputation() {
		validComputation = false;
	}

}

Back to the top