/****************************************************************************** * Copyright (c) 2007 g-Eclipse consortium * 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 * * Initial development of the original code was made for * project g-Eclipse founded by European Union * project number: FP6-IST-034327 http://www.geclipse.eu/ * * Contributor(s): * Mariusz Wojtysiak - initial API and implementation * *****************************************************************************/ package eu.geclipse.ui.views.jobdetails; import org.eclipse.ui.forms.widgets.FormToolkit; import eu.geclipse.core.model.IGridJob; /** * JobDetailsView configuration */ public interface IViewConfiguration { /** * @return true if details with empty value also should be shown on view */ boolean isShowEmptyEnabled(); /** * @return manager of {@link IJobDetailsSection}s */ JobDetailSectionsManager getSectionsManager(); /** * @return form toolkit used to create widgets */ FormToolkit getFormToolkit(); /** * @return get job actually shown in view */ IGridJob getInputJob(); /** * Refresh whole view using current input job */ void refresh(); }