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    /*!
    15     *  ======== ICallBack ========
    16     *  ROV tooling progress callback interface
    17     */
    18    metaonly interface ICallBack {
    19    
    20    instance:
    21    
    22        /*!
    23         *  ======== updateStartupProgress ========
    24         *  Progress update callback
    25         *  
    26         *  The ROV model calls this API at particular points to update any
    27         *  startup progress provided by the client ROV tooling.
    28         */
    29        Void updateStartupProgress(Int percent, String message);
    30        
    31        /*!
    32         *  ======== getAbortFlag ========
    33         */
    34        Bool getAbortFlag();
    35    }
    36    
    37    /*
    38     *  @(#) xdc.rov; 1, 0, 1,0; 2-20-2019 10:22:32; /db/ztree/library/trees/xdc/xdc-F09/src/packages/
    39     */
    40