blob: f7106acae950873d63e69762fc872498698dc674 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* 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:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.sdk.rap.var;
import java.util.EventListener;
import org.eclipse.core.resources.IFile;
/**
* <h3>{@link IRapTargetVariableListener}</h3> ...
*
* @author Matthias Villiger
* @since 3.9.0 14.01.2013
*/
public interface IRapTargetVariableListener extends EventListener {
void valueChanged(String oldVal, String newVal);
void emptyVariableInUse(IFile targetFile);
}