/******************************************************************************* * Copyright (c) 2012-2015 Codenvy, S.A. * 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: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; /** * This interface give ability part stack manipulate visibility an size in container. * * @author Evgen Vidolob */ public interface WorkBenchPartController { /** * Get part stack size. * * @return the size */ double getSize(); /** * Set part stack size. * * @param size */ void setSize(double size); /** * Show/hide part stack. * * @param hidden */ void setHidden(boolean hidden); }