本文整理汇总了Java中ro.sync.exml.plugin.PluginDescriptor类的典型用法代码示例。如果您正苦于以下问题:Java PluginDescriptor类的具体用法?Java PluginDescriptor怎么用?Java PluginDescriptor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
PluginDescriptor类属于ro.sync.exml.plugin包,在下文中一共展示了PluginDescriptor类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: WorkspaceAccessPlugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
/**
* Constructs the plugin.
*
* @param descriptor The plugin descriptor
*/
public WorkspaceAccessPlugin(PluginDescriptor descriptor) {
super(descriptor);
if (instance != null) {
throw new IllegalStateException("Already instantiated!");
}
instance = this;
}
示例2: TranslationPackageBuilderPlugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
/**
* Constructs the plugin.
*
* @param descriptor The plugin descriptor.
*/
public TranslationPackageBuilderPlugin(PluginDescriptor descriptor) {
super(descriptor);
if (instance != null) {
throw new IllegalStateException("Already instantiated!");
}
instance = this;
}
开发者ID:oxygenxml,项目名称:oxygen-dita-translation-package-builder,代码行数:14,代码来源:TranslationPackageBuilderPlugin.java
示例3: OxygenGitPlugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
/**
* Constructs the plugin.
*
* @param descriptor The plugin descriptor
*/
public OxygenGitPlugin(PluginDescriptor descriptor) {
super(descriptor);
if (instance != null) {
throw new IllegalStateException("Already instantiated!");
}
instance = this;
}
示例4: WorkspaceAccessPlugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
/**
* Constructs the plugin.
*
* @param descriptor The plugin descriptor
*/
public WorkspaceAccessPlugin(PluginDescriptor descriptor) {
super(descriptor);
if (instance != null) {
throw new IllegalStateException("Already instantiated!");
}
instance = this;
}
示例5: OpenDocsPlugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
public OpenDocsPlugin(PluginDescriptor descriptor) {
super(descriptor);
OpenDocsPlugin.descriptor = descriptor;
if (instance != null) {
throw new IllegalStateException("Already instantiated!");
}
instance = this;
}
示例6: LanguageToolPlugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
public LanguageToolPlugin(PluginDescriptor descriptor) {
super(descriptor);
if (instance != null) {
throw new IllegalStateException("Already instantiated: " + instance);
}
instance = this;
}
示例7: GlyphPickerPlugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
/**
* Constructs the plugin.
*
* @param descriptor The plugin descriptor
*/
public GlyphPickerPlugin(PluginDescriptor descriptor) {
super(descriptor);
if (instance != null) {
throw new IllegalStateException("Already instantiated!");
}
instance = this;
}
示例8: JUELPlugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
/**
* Antebellum Plugin constructor.
*
* @param descriptor Plugin descriptor object.
*/
public JUELPlugin(PluginDescriptor descriptor) {
super(descriptor);
if (instance != null) {
throw new IllegalStateException("Already instantiated!");
}
instance = this;
}
示例9: CBWPlugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
/**
* CBW Plugin constructor.
*
* @param descriptor Plugin descriptor object.
*/
public CBWPlugin(PluginDescriptor descriptor) {
super(descriptor);
if (instance != null) {
throw new IllegalStateException("Already instantiated!");
}
instance = this;
}
示例10: SamplePlugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
/**
* SamplePlugin constructor.
*
* @param descriptor Plugin descriptor object.
*/
public SamplePlugin(PluginDescriptor descriptor) {
super(descriptor);
if (instance != null) {
throw new IllegalStateException("Already instantiated!");
}
instance = this;
}
示例11: DateParserPlugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
/**
* SamplePlugin constructor.
*
* @param descriptor Plugin descriptor object.
*/
public DateParserPlugin(PluginDescriptor descriptor) {
super(descriptor);
if (instance != null) {
throw new IllegalStateException("Already instantiated!");
}
instance = this;
}
示例12: GetIDPlugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
/**
* SamplePlugin constructor.
*
* @param descriptor Plugin descriptor object.
*/
public GetIDPlugin(PluginDescriptor descriptor) {
super(descriptor);
if (instance != null) {
throw new IllegalStateException("Already instantiated!");
}
instance = this;
}
示例13: TaggerPlugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
/**
* Constructs the plugin.
*
* @param descriptor
* The plugin descriptor
*/
public TaggerPlugin(PluginDescriptor descriptor) {
super(descriptor);
if (instance != null) {
throw new IllegalStateException("Already instantiated!");
}
instance = this;
}
示例14: Plugin
import ro.sync.exml.plugin.PluginDescriptor; //导入依赖的package包/类
public Plugin(PluginDescriptor descriptor) {
super(descriptor);
Macs.register();
}