blob: 12b6776ff92d6e9cc793746bc0047f3d872a354e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Bosch Software Innovations GmbH and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
* The Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Bosch Software Innovations GmbH - Please refer to git log
*
*******************************************************************************/
package org.eclipse.vorto.fbeditor.ui.internal.template
import org.eclipse.vorto.api.common.generation.FunctionBlockMetaData
class FbmodelTemplateFileContent {
FunctionBlockMetaData context;
new (FunctionBlockMetaData context) {
this.context = context;
}
public def String getFbModelContent() {
return '''
functionblock «context.name» {
displayname "«context.displayName»"
description "«context.description»"
vendor www.bosch.com
category demo
version «context.version»
configuration{
//Please enter functionblock configuration details.
}
status{
//Please enter functionblock status details.
}
fault{
//Please enter functionblock fault configuration.
}
operations{
//Please enter functionblock operations.
}
}
'''
}
}