at.spardat.xma.page.IAppShell Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2003, 2007 s IT Solutions AT Spardat GmbH .
* 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:
* s IT Solutions AT Spardat GmbH - initial API and implementation
*******************************************************************************/
/*
* Created on 18.12.2003
*
*
*
*/
package at.spardat.xma.page;
import at.spardat.xma.boot.component.IDialog;
import at.spardat.xma.boot.component.IXMAControl;
/**
*
*
* @author s2877
*/
public interface IAppShell extends IDialog {
void pushClientComponent(IXMAControl newClient,boolean modal);
// void call(ITask task);
void contextStringChanged(IXMAControl source,String newText);
}