本文整理汇总了Java中eu.mihosoft.vrl.system.PluginDependency类的典型用法代码示例。如果您正苦于以下问题:Java PluginDependency类的具体用法?Java PluginDependency怎么用?Java PluginDependency使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
PluginDependency类属于eu.mihosoft.vrl.system包,在下文中一共展示了PluginDependency类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: SWCDensityVisualizationPluginConfigurator
import eu.mihosoft.vrl.system.PluginDependency; //导入依赖的package包/类
public SWCDensityVisualizationPluginConfigurator() {
// identification of plugin, description and copyright
setIdentifier(new PluginIdentifier("SWC-Density-Vis-Plugin", "0.3"));
setDescription("Visualizes the density of a bunch of SWC files");
setCopyrightInfo("SWCDensityVisualizationPlugin",
"(c) Stephan Grein", "www", "license", "license text");
// allow export package to use by other projects
exportPackage("edu.gcsc.vrl.swcdensityvis");
// specify dependencies
addDependency(new PluginDependency("VRL", "0.4.2.7", VersionInfo.UNDEFINED));
addDependency(new PluginDependency("VRL-JFreeChart", "0.2.4", VersionInfo.UNDEFINED));
addDependency(new PluginDependency("Density-Vis-Plugin", "0.2", VersionInfo.UNDEFINED));
}
开发者ID:stephanmg,项目名称:VRL-SWC-Density-Vis,代码行数:18,代码来源:SWCDensityVisualizationPluginConfigurator.java
示例2: NeuronPluginConfigurator
import eu.mihosoft.vrl.system.PluginDependency; //导入依赖的package包/类
public NeuronPluginConfigurator() {
//specify the plugin name and version
setIdentifier(new PluginIdentifier("Neuron-Plugin", "0.1"));
// optionally allow other plugins to use the api of this plugin
// you can specify packages that shall be
// exported by using the exportPackage() method:
//
// exportPackage("com.your.package");
// describe the plugin
setDescription("Neuron Plugin for VRL");
// copyright info
setCopyrightInfo("Neuron-Plugin",
"(c) Stephan Grein",
"www.you.com", "License Name", "License Text...");
// specify dependencies
addDependency(new PluginDependency("VRL", "0.4.2", "0.4.2"));
addDependency(new PluginDependency("VRL-UG", "0.2", "0.2"));
addDependency(new PluginDependency("VRL-UG-API", "0.2", "0.2"));
addDependency(new PluginDependency("VRL-UserData", "0.2", "0.2"));
}
示例3: MembranePotentialMappingPluginConfigurator
import eu.mihosoft.vrl.system.PluginDependency; //导入依赖的package包/类
public MembranePotentialMappingPluginConfigurator() {
//specify the plugin name and version
setIdentifier(new PluginIdentifier("VRL-MembranePotentialMapping-Plugin", "0.5"));
// describe the plugin
setDescription("Plugin for membrane potential mapping simulations and using the NEURON interpreter within UG in VRL-Studio.");
// copyright info
setCopyrightInfo("VRL-MembranePotentialMapping-Plugin",
"(c) Stephan Grein",
"www.g-csc.de", "Proprietary", "Proprietary");
// export the package
exportPackage("edu.gcsc.vrl.MembranePotentialMapping");
// specify dependencies
addDependency(new PluginDependency("VRL", "0.4.2", "0.4.2"));
addDependency(new PluginDependency("VRL-UG", "0.2", "0.2"));
addDependency(new PluginDependency("VRL-UG-API", "0.2", "0.2"));
addDependency(new PluginDependency("VRL-UserData", "0.2", "0.2"));
}
开发者ID:NeuroBox3D,项目名称:VRL-Neuron-Plugin,代码行数:22,代码来源:MembranePotentialMappingPluginConfigurator.java
示例4: Configurator
import eu.mihosoft.vrl.system.PluginDependency; //导入依赖的package包/类
public Configurator() {
setIdentifier(new PluginIdentifier("NeuGen", "0.1"));
setDescription("NeuGen Plugin");
exportPackage("org.neugen");
addDependency(new PluginDependency("VRL", "0.4.2", "0.4.x"));
}