本文整理汇总了Java中com.atlassian.plugin.PluginParseException类的典型用法代码示例。如果您正苦于以下问题:Java PluginParseException类的具体用法?Java PluginParseException怎么用?Java PluginParseException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
PluginParseException类属于com.atlassian.plugin包,在下文中一共展示了PluginParseException类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: init
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
public void init(Map<String, String> params) throws PluginParseException
{
forEdit = false;
if (params != null && !params.isEmpty() && params.get("forEdit") != null)
{
forEdit = !params.get("forEdit").isEmpty();
}
}
示例2: init
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
/********************************************************************************************************
* Initialize.
*
* @param map
*/
@SuppressWarnings( "unchecked" )
public void init( Map map )
throws PluginParseException
{
// --- nothing to do here
}
示例3: start
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
/**
* Starts the plugins framework. Will return once the plugins have all been loaded and started. Should only be
* called once.
*
* @throws PluginParseException If there was any problems parsing any of the plugins
*/
public void start() throws PluginParseException {
this.pluginManager.init();
if (this.hotDeployer != null && !this.hotDeployer.isRunning()) {
this.hotDeployer.start();
}
}
示例4: init
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
/**
* {@inheritDoc}
*/
@Override
public void init(Plugin plugin, Element element) throws PluginParseException {
super.init(plugin, element);
this.tab = new ProjectTab();
this.tab.setLabel(element.attributeValue("label"));
this.tab.setUrl(element.attributeValue("url"));
this.tab.setKey(element.attributeValue("tab-key"));
}
示例5: init
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
/**
* {@inheritDoc}
*/
@Override
public void init(Plugin plugin, Element element) throws PluginParseException {
super.init(plugin, element);
this.moduleClassName = element.element("platform-module").attributeValue("class");
}
示例6: getEnabledModuleDescriptorsByType
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
@Override
public <M> List<ModuleDescriptor<M>> getEnabledModuleDescriptorsByType(final String arg0) throws PluginParseException {
return null;
}
示例7: init
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
@Override
public void init(Map<String, String> stringStringMap) throws PluginParseException
{
// nop
}
示例8: init
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
@Override
public void init(Map<String, String> params) throws PluginParseException
{
}
示例9: init
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
/********************************************************************************************************
* init().
*
* @param map
*/
@SuppressWarnings( "unchecked" )
public void init( Map map )
throws PluginParseException
{
}
开发者ID:javiergutites,项目名称:bamboo-checkstyle-plugin,代码行数:11,代码来源:CheckStyleResultWebItemCondition.java
示例10: init
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
public void init(Map<String, String> map) throws PluginParseException {
}
示例11: init
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
@Override
public void init(Map<String, String> params) throws PluginParseException {
}
示例12: init
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
@Override
public void init(Map<String, String> params) throws PluginParseException {}
示例13: init
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
@Override
public void init(Map<String, String> context) throws PluginParseException { }
示例14: init
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
/**
* {@inheritDoc}
*/
@Override
public void init(Map<String, String> context) throws PluginParseException {
// Nothing to do here
}
开发者ID:TrimbleSolutionsCorporation,项目名称:TeamcityTriggerHook,代码行数:8,代码来源:WebhookIsEnabledCondition.java
示例15: init
import com.atlassian.plugin.PluginParseException; //导入依赖的package包/类
@Override
public void init(Map<String, String> params) throws PluginParseException {
// nothing to do here, no params are needed
}