fr.adrienbrault.idea.symfony2plugin.stubs.indexes.externalizer.StringSetDataExternalizer Java Examples

The following examples show how to use fr.adrienbrault.idea.symfony2plugin.stubs.indexes.externalizer.StringSetDataExternalizer. 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: ConfigIndex.java    From idea-php-shopware-plugin with MIT License 4 votes vote down vote up
@NotNull
@Override
public DataExternalizer<Set<String>> getValueExternalizer() {
    return new StringSetDataExternalizer();
}
 
Example #2
Source File: SnippetIndex.java    From idea-php-shopware-plugin with MIT License 4 votes vote down vote up
@NotNull
@Override
public DataExternalizer<Set<String>> getValueExternalizer() {
    return new StringSetDataExternalizer();
}
 
Example #3
Source File: InitResourceServiceIndex.java    From idea-php-shopware-plugin with MIT License 4 votes vote down vote up
@NotNull
@Override
public DataExternalizer<Set<String>> getValueExternalizer() {
    return new StringSetDataExternalizer();
}
 
Example #4
Source File: ServicesTagStubIndex.java    From idea-php-symfony2-plugin with MIT License 4 votes vote down vote up
@NotNull
public DataExternalizer<Set<String>> getValueExternalizer() {
    return new StringSetDataExternalizer();
}