blob: cebf03832d9d634e6c61122cc4b9847cb2fdc1d0 [file] [log] [blame]
/* --COPYRIGHT--,EPL
* Copyright (c) 2008 Texas Instruments and others.
* 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:
* Texas Instruments - initial implementation
*
* --/COPYRIGHT--*/
package xdc.rov
/*!
* ======== ICallBack ========
* ROV tooling progress callback interface
*/
metaonly interface ICallBack {
instance:
/*!
* ======== updateStartupProgress ========
* Progress update callback
*
* The ROV model calls this API at particular points to update any
* startup progress provided by the client ROV tooling.
*/
Void updateStartupProgress(Int percent, String message);
/*!
* ======== getAbortFlag ========
*/
Bool getAbortFlag();
}