Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 206d9448065b26b66c39c922256fdb7016f1edb6 (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
33
34
/*******************************************************************************
 * Copyright (c) 2007, 2008 Wind River Systems 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:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.dsf.debug.internal.ui.viewmodel.update.provisional;

import org.eclipse.cdt.dsf.ui.viewmodel.update.ViewModelUpdateMessages;


/**
 * An "automatic" update policy which causes the view model provider cache to 
 * be flushed whenever an event causes a delta to be generated in the given 
 * model.
 * 
 * @since 1.1 
 */
public class VisibleUpdateScope implements IVMUpdateScope {

    public static String VISIBLE_UPDATE_SCOPE_ID = "org.eclipse.cdt.dsf.ui.viewmodel.update.visibleUpdateScope";  //$NON-NLS-1$
    
    public String getID() {
        return VISIBLE_UPDATE_SCOPE_ID;
    }

    public String getName() {
        return ViewModelUpdateMessages.VisibleUpdateScope_name;
    }
}

Back to the top