blob: 10083de7bc43b35235a42a61981cf5797cec14d7 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.core.common.editpart.visibility;
import org.eclipse.osbp.ecview.core.common.visibility.IVisibilityHandler;
// TODO: Auto-generated Javadoc
/**
* An element that can handle visibility properties.
*/
public interface IVisibilityProcessable {
/**
* Is called to apply the visibility properties. If <code>null</code> is
* passed, it means the same as {@link #resetVisibilityProperties()}.
*
* @param handler
* the handler
*/
void apply(IVisibilityHandler handler);
/**
* Is called to reset the currently set visibility properties.
*/
void resetVisibilityProperties();
}