com.arc.cdt.debug.seecode.ui.internal.display.DeferredSeparator.java Source code

Java tutorial

Introduction

Here is the source code for com.arc.cdt.debug.seecode.ui.internal.display.DeferredSeparator.java

Source

/*******************************************************************************
 * Copyright (c) 2005-2012 Synopsys, Incorporated
 * 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:
 * Synopsys, Inc - Initial implementation 
 *******************************************************************************/
package com.arc.cdt.debug.seecode.ui.internal.display;

import org.eclipse.jface.action.IToolBarManager;
import org.eclipse.jface.action.Separator;

class DeferredSeparator implements IToolBarItem {

    @Override
    public void addToToolBar(IToolBarManager manager) {
        manager.add(new Separator());
    }

    public void setRegenerationCallback(Runnable regenerate) {

    }

}