Java Code Examples for com.intellij.openapi.extensions.ExtensionPointName#create()
The following examples show how to use
com.intellij.openapi.extensions.ExtensionPointName#create() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CompositeExtensionPointName.java From consulo with Apache License 2.0 | 4 votes |
protected CompositeExtensionPointName(@Nonnull String name, @Nonnull Class<T> clazz) { myName = ExtensionPointName.create(name); myClazz = clazz; }
Example 2
Source File: ElementTypeEntryExtensionCollector.java From consulo with Apache License 2.0 | 4 votes |
private ElementTypeEntryExtensionCollector(@Nonnull String epName) { myExtensionPointName = ExtensionPointName.create(epName); }
Example 3
Source File: KeyedExtensionCollector.java From consulo with Apache License 2.0 | 4 votes |
public KeyedExtensionCollector(@Nonnull String epName) { myEPName = ExtensionPointName.create(epName); }