blob: 6fcccf8531e922f3b2ff163c4224164f8ae18450 [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--*/
/*
* ======== IPackage.init ========
* Initialize this package.
*
* This is called after all modules in this package are defined and
* initialized.
*/
function init()
{
// print(this.$name + ".init() ...");
}
/*
* ======== IPackage.exit ========
* Finalize this package
*/
function exit() {
// print(this.$name + ".exit() ...");
}
/*
* ======== IPackage.getLibs ========
* This package's implementation of xdc.IPackage.getLibs.
*/
function getLibs()
{
return (null); /* no library required for this package */
}