Carbide.c++

com.nokia.carbide.template.engine
Interface ITemplate


public interface ITemplate

Runtime access to a single template in a com.nokia.carbide.templatewizard.wizardTemplate extension.


Method Summary
 Bundle getBundle()
          The Bundle of the Plugin where this template is declared.
 java.lang.String getTemplateId()
          The value of the templateId attribute for this template.
 java.net.URL getTemplateUrl()
          The file URL representing the absolute path of the template xml file.
 java.util.Map<java.lang.String,java.lang.Object> getTemplateValues()
          After the wizard that this template specified has completed successfully,
the Map (from field id to value) containing the actual user values from the wizard
 

Method Detail

getTemplateUrl

java.net.URL getTemplateUrl()
The file URL representing the absolute path of the template xml file.

Returns:
java.net.URL

getBundle

Bundle getBundle()
The Bundle of the Plugin where this template is declared.

Returns:
org.osgi.framework.Bundle

getTemplateId

java.lang.String getTemplateId()
The value of the templateId attribute for this template.

Returns:
java.lang.String

getTemplateValues

java.util.Map<java.lang.String,java.lang.Object> getTemplateValues()
After the wizard that this template specified has completed successfully,
the Map (from field id to value) containing the actual user values from the wizard

Returns:
java.util.Map

Carbide.c++