1 /* 2 * Copyright (c) 2008 Texas Instruments and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * Texas Instruments - initial implementation 10 * 11 * */ 12 package xdc.rov 13 14 metaonly interface ICallBack { 15 16 instance: 17 18 /*! 19 * ======== updateStartupProgress ======== 20 * The ROV model will call this API at particular points to update the 21 * startup progress. 22 */ 23 Void updateStartupProgress(Int percent, String message); 24 25 /*! 26 * ======== getAbortFlag ======== 27 */ 28 Bool getAbortFlag(); 29 } 30 31 /* 32 * @(#) xdc.rov; 1, 0, 0,414; 2-28-2013 19:55:10; /db/ztree/library/trees/xdc/xdc-z44x/src/packages/ 33 */ 34