blob: 3462b24d68e5c1dbc2435154dbb2927d52df9a80 [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.tools;
/*!
* ======== IRtscProductTemplate ========
* @_nodoc
*
*/
metaonly interface IRtscProductTemplate
{
/*!
* Structure providing information on the available configurations
*
* @field(title) String containing the title of the template
* @field(fileList) Array of file paths relative to the template
* package folder
* @field(description) String containing the description of the template
* @field(template) Array containing one 'TemplateInfo' object
*/
struct TemplateInfo {
String title;
String fileList[];
String description;
TemplateInfo template[];
};
/*!
* ======== appTemplates ========
*/
config TemplateInfo appTemplates[];
/*!
* ======== configTemplates ========
*/
config TemplateInfo configTemplates[];
}