Unnamed: 0
int64
0
305k
body
stringlengths
7
52.9k
name
stringlengths
1
185
24,000
boolean () { return myApplyToSubTags; }
isApplyToSubTags
24,001
void (final boolean applyToSubTagTexts) { myApplyToSubTags = applyToSubTagTexts; }
setApplyToSubTags
24,002
boolean (PsiElement element) { if (element instanceof XmlAttributeValue) { PsiElement parent = element.getParent(); return parent instanceof XmlAttribute && acceptsPsiElement(parent); } else return element instanceof XmlTag && acceptsPsiElement(element); }
acceptForReference
24,003
JPanel () { return myRoot; }
getComponent
24,004
void () { myNameTextField.setText(myOrigInjection.getDisplayName()); myLocalName.setText(myOrigInjection.getAttributeName()); myNamespace.getEditor().setItem(myOrigInjection.getAttributeNamespace()); myUseGeneratedName = Objects.equals(myOrigInjection.getDisplayName(), myOrigInjection.getGeneratedName()); }
resetImpl
24,005
void (XmlAttributeInjection other) { other.setAttributeName(myLocalName.getText()); other.setAttributeNamespace(getNamespace()); String name = myNameTextField.getText(); boolean useGenerated = myUseGeneratedName && Objects.equals(myOrigInjection.getDisplayName(), name); String newName = useGenerated || StringUtil.isEmp...
apply
24,006
String () { final String s = (String)myNamespace.getEditor().getItem(); return s != null ? s : ""; }
getNamespace
24,007
void () { myLanguagePanel = new LanguagePanel(myProject, myOrigInjection); myTagPanel = new TagPanel(myProject, myOrigInjection); myAdvancedPanel = new AdvancedXmlPanel(myProject, myOrigInjection); myLocalName = new LanguageTextField(RegExpLanguage.INSTANCE, myProject, myOrigInjection.getAttributeName()); myNamespace =...
createUIComponents
24,008
ComboBoxModel (Project project) { final List<String> data = project.getUserData(URI_MODEL); if (data != null) { return new DefaultComboBoxModel(data.toArray()); } final List<String> urls = new ArrayList<>(Arrays.asList(ExternalResourceManager.getInstance().getResourceUrls(null, true))); Collections.sort(urls); final Js...
createNamespaceUriModel
24,009
JPanel () { return myRoot; }
getComponent
24,010
void () { myLocalName.setText(myOrigInjection.getTagName()); myNamespace.getEditor().setItem(myOrigInjection.getTagNamespace()); myWithSubtags.setSelected(myOrigInjection.isApplyToSubTags()); }
resetImpl
24,011
void (AbstractTagInjection other) { other.setTagName(myLocalName.getText()); other.setTagNamespace(getNamespace()); other.setApplyToSubTags(myWithSubtags.isSelected()); }
apply
24,012
String () { final String s = (String)myNamespace.getEditor().getItem(); return s != null ? s : ""; }
getNamespace
24,013
void () { myLocalName = new LanguageTextField(RegExpLanguage.INSTANCE, myProject, myOrigInjection.getTagName()); myNamespace = new ComboBox(200); }
createUIComponents
24,014
void (XmlTagInjection other) { String name = myNameTextField.getText(); boolean useGenerated = myUseGeneratedName && Objects.equals(myOrigInjection.getDisplayName(), name); String newName = useGenerated || StringUtil.isEmptyOrSpaces(name) ? other.getGeneratedName() : name; other.setDisplayName(newName); }
apply
24,015
void () { myNameTextField.setText(myOrigInjection.getDisplayName()); myUseGeneratedName = Objects.equals(myOrigInjection.getDisplayName(), myOrigInjection.getGeneratedName()); }
resetImpl
24,016
JPanel () { return myRoot; }
getComponent
24,017
void () { myLanguagePanel = new LanguagePanel(myProject, myOrigInjection); myPanel = new TagPanel(myProject, myOrigInjection); myAdvancedPanel = new AdvancedXmlPanel(myProject, myOrigInjection); }
createUIComponents
24,018
void (AbstractTagInjection other) { other.setValuePattern(myValuePattern.getText()); other.setSingleFile(mySingleFileCheckBox.isSelected()); other.setXPathCondition(myXPathCondition.getText()); }
apply
24,019
void () { myValuePattern.setText(myOrigInjection.getValuePattern()); mySingleFileCheckBox.setSelected(myOrigInjection.isSingleFile()); myXPathCondition.setText(myOrigInjection.getXPathCondition()); }
resetImpl
24,020
JPanel () { return myRoot; }
getComponent
24,021
void () { myValuePattern = new LanguageTextField(RegExpLanguage.INSTANCE, myProject, myOrigInjection.getValuePattern(), new LanguageTextField.SimpleDocumentCreator() { @Override public void customizePsiFile(PsiFile psiFile) { psiFile.putCopyableUserData(ValueRegExpAnnotator.KEY, Boolean.TRUE); } }); // don't even bothe...
createUIComponents
24,022
void (PsiFile psiFile) { psiFile.putCopyableUserData(ValueRegExpAnnotator.KEY, Boolean.TRUE); }
customizePsiFile
24,023
void (PsiFile psiFile) { // important to get proper validation & completion for Jaxen's built-in and PSI functions // like lower-case(), file-type(), file-ext(), file-name(), etc. if (proxy != null) { proxy.attachContext(psiFile); } }
customizePsiFile
24,024
void (@NotNull final MultiHostRegistrar registrar, @NotNull PsiElement host) { final XmlElement xmlElement = (XmlElement) host; if (!isInIndex(xmlElement)) return; final TreeSet<TextRange> ranges = new TreeSet<>(InjectorUtils.RANGE_COMPARATOR); final PsiFile containingFile = xmlElement.getContainingFile(); final Ref<Bo...
getLanguagesToInject
24,025
void (@NotNull PsiElement element) { if (element instanceof XmlText) { if (!(element instanceof PsiLanguageInjectionHost) || element.getTextLength() == 0) return; if (!injection.shouldBeIgnored(element)) { List<TextRange> list = injection.getInjectedArea(element); InjectedLanguage l = InjectedLanguage.create(injection....
visitElement
24,026
Configuration () { return Configuration.getProjectInstance(myProject); }
getConfiguration
24,027
boolean (XmlElement xmlElement) { final XmlIndex index = getXmlAnnotatedElementsValue(); if (xmlElement instanceof XmlAttributeValue) xmlElement = (XmlElement)xmlElement.getParent(); final XmlTag tag; if (xmlElement instanceof XmlAttribute attribute) { if (areThereInjectionsWithText(attribute.getLocalName(), index)) re...
isInIndex
24,028
boolean (final String text, XmlIndex index) { if (text == null) return false; if (index.strings.contains(text)) return true; Pattern pattern = index.pattern; return pattern != null && pattern.matcher(text).matches(); }
areThereInjectionsWithText
24,029
XmlIndex () { Configuration configuration = getConfiguration(); XmlIndex index = myXmlIndex; if (index == null || configuration.getModificationCount() != index.modCount) { final Map<ElementPattern<?>, BaseInjection> map = new HashMap<>(); for (BaseInjection injection : configuration.getInjections(XmlLanguageInjectionSu...
getXmlAnnotatedElementsValue
24,030
Pattern (Collection<String> stringSet) { final StringBuilder sb = new StringBuilder(); for (String s : stringSet) { if (!InjectorUtils.isRegexp(s)) continue; if (sb.length() > 0) sb.append('|'); sb.append("(?:").append(s).append(")"); } return sb.length() == 0 ? null : Pattern.compile(sb.toString()); }
buildPattern
24,031
boolean (final PsiLanguageInjectionHost host) { if (host instanceof XmlAttributeValue) { final PsiElement p = host.getParent(); if (p instanceof XmlAttribute) { final String s = ((XmlAttribute)p).getName(); return !("xmlns".equals(s) || s.startsWith("xmlns:")); } } else if (host instanceof XmlText) { final XmlTag tag =...
isMine
24,032
String () { return XML_SUPPORT_ID; }
getId
24,033
boolean (PsiLanguageInjectionHost host) { return host instanceof XmlElement; }
isApplicableTo
24,034
BaseInjection (@NotNull PsiElement host, @Nullable Ref<? super PsiElement> commentRef) { if (host instanceof XmlAttributeValue) return null; return InjectorUtils.findCommentInjection(host instanceof XmlText ? host.getParent() : host, getId(), commentRef); }
findCommentInjection
24,035
boolean (Language language, final PsiLanguageInjectionHost psiElement) { if (!isMine(psiElement)) return false; String id = language.getID(); if (psiElement instanceof XmlAttributeValue) { return doInjectInAttributeValue((XmlAttributeValue)psiElement, id); } else if (psiElement instanceof XmlText) { return doInjectInXm...
addInjectionInPlace
24,036
boolean (final PsiLanguageInjectionHost host) { return removeInjection(host); }
removeInjectionInPlace
24,037
boolean (PsiElement host) { final Project project = host.getProject(); final Configuration configuration = Configuration.getProjectInstance(project); final ArrayList<BaseInjection> injections = collectInjections(host, configuration); if (injections.isEmpty()) return false; final ArrayList<BaseInjection> newInjections =...
removeInjection
24,038
boolean (final PsiLanguageInjectionHost host) { if (!isMine(host)) return false; final Project project = host.getProject(); final Configuration configuration = Configuration.getProjectInstance(project); final ArrayList<BaseInjection> injections = collectInjections(host, configuration); if (injections.isEmpty()) return ...
editInjectionInPlace
24,039
BaseInjection (final Project project, final BaseInjection xmlInjection) { final AbstractInjectionPanel panel; String helpId; if (xmlInjection instanceof XmlTagInjection) { panel = new XmlTagPanel((XmlTagInjection)xmlInjection, project); helpId = "reference.settings.injection.language.injection.settings.xml.tag"; } else...
showInjectionUI
24,040
BaseInjection (final BaseInjection injection) { if (injection.getInjectionPlaces().length == 0 || injection.getInjectionPlaces().length > 1) return null; AbstractTagInjection result; final InjectionPlace place = injection.getInjectionPlaces()[0]; final ElementPattern<? extends PsiElement> rootPattern = place.getElement...
createFrom
24,041
String (PatternCondition<?> condition) { if (!(condition instanceof PatternConditionPlus)) return null; final ElementPattern valuePattern = ((PatternConditionPlus<?, ?>)condition).getValuePattern(); final ElementPatternCondition<?> rootCondition = valuePattern.getCondition(); if (!String.class.equals(rootCondition.getI...
extractValue
24,042
BaseInjection (Element element) { String place = StringUtil.notNullize(element.getChildText("place")); if (place.startsWith("xmlAttribute")) { return new XmlAttributeInjection(); } else if (place.startsWith("xmlTag")) { return new XmlTagInjection(); } else { return new BaseInjection(XML_SUPPORT_ID); } }
createInjection
24,043
boolean (final XmlText host, final String languageId) { final XmlTag tag = host.getParentTag(); if (tag != null) { final XmlTagInjection injection = new XmlTagInjection(); injection.setInjectedLanguageId(languageId); injection.setTagName(tag.getLocalName()); injection.setTagNamespace(tag.getNamespace()); injection.gene...
doInjectInXmlText
24,044
void (final Project project, PsiFile psiFile, final XmlTagInjection template) { final Configuration configuration = InjectorUtils.getEditableInstance(project); final AbstractTagInjection originalInjection = (AbstractTagInjection)configuration.findExistingInjection(template); final XmlTagInjection newInjection = origina...
doEditInjection
24,045
boolean (final XmlAttributeValue host, final String languageId) { final XmlAttribute attribute = PsiTreeUtil.getParentOfType(host, XmlAttribute.class, true); final XmlTag tag = attribute == null? null : attribute.getParent(); if (tag != null) { final XmlAttributeInjection injection = new XmlAttributeInjection(); inject...
doInjectInAttributeValue
24,046
void (final Project project, PsiFile file, final XmlAttributeInjection template) { final Configuration configuration = InjectorUtils.getEditableInstance(project); final BaseInjection originalInjection = configuration.findExistingInjection(template); final BaseInjection newInjection = originalInjection == null ? templat...
doEditInjection
24,047
ArrayList<BaseInjection> (final PsiElement host, final Configuration configuration) { final ArrayList<BaseInjection> result = new ArrayList<>(); final PsiElement element = host instanceof XmlText? ((XmlText)host).getParentTag() : host instanceof XmlAttributeValue? host.getParent(): host; for (BaseInjection injection : ...
collectInjections
24,048
AnAction[] (final Project project, final Consumer<? super BaseInjection> consumer) { return new AnAction[] { new AnAction(IntelliLangBundle.messagePointer("action.XmlLanguageInjectionSupport.Anonymous.xml.tag.injection"), Presentation.NULL_STRING, PlatformIcons.XML_TAG_ICON) { @Override public void actionPerformed(@Not...
createAddActions
24,049
void (@NotNull final AnActionEvent e) { final BaseInjection newInjection = showInjectionUI(project, new XmlTagInjection()); if (newInjection != null) consumer.consume(newInjection); }
actionPerformed
24,050
void (@NotNull final AnActionEvent e) { final BaseInjection injection = showInjectionUI(project, new XmlAttributeInjection()); if (injection != null) consumer.consume(injection); }
actionPerformed
24,051
AnAction (final Project project, final Factory<? extends BaseInjection> producer) { return new AnAction() { @Override public void actionPerformed(@NotNull final AnActionEvent e) { final BaseInjection originalInjection = producer.create(); final BaseInjection injection = createFrom(originalInjection); if (injection != n...
createEditAction
24,052
void (@NotNull final AnActionEvent e) { final BaseInjection originalInjection = producer.create(); final BaseInjection injection = createFrom(originalInjection); if (injection != null) { final BaseInjection newInjection = showInjectionUI(project, injection); if (newInjection != null) { originalInjection.copyFrom(newInj...
actionPerformed
24,053
JComponent () { myPanel = new AdvancedSettingsPanel(); return myPanel.myRoot; }
createComponent
24,054
boolean () { return myPanel.isModified(); }
isModified
24,055
void () { myPanel.reset(); }
reset
24,056
void () { myPanel = null; }
disposeUIResources
24,057
String () { return IntelliLangBundle.message("configurable.AdvancedSettingsUI.display.name"); }
getDisplayName
24,058
String () { return "reference.settings.injection.advanced"; }
getHelpTopic
24,059
String () { return "IntelliLang.Advanced"; }
getId
24,060
void (ActionEvent e) { final TreeClassChooserFactory factory = TreeClassChooserFactory.getInstance(myProject); final GlobalSearchScope scope = GlobalSearchScope.allScope(myProject); final PsiClass aClass = JavaPsiFacade.getInstance(myProject).findClass(myField.getText(), scope); final TreeClassChooser chooser = factory...
actionPerformed
24,061
boolean (PsiClass aClass) { return aClass.isAnnotationType(); }
isAccepted
24,062
void (JPanel panel, ReferenceEditorWithBrowseButton field) { panel.add(field, BorderLayout.CENTER); final Component[] components = panel.getParent().getComponents(); final int index = Arrays.asList(components).indexOf(panel); if (index > 0) { final Component component = components[index - 1]; if (component instanceof J...
addField
24,063
boolean () { if (getInstrumentation() != myConfiguration.getInstrumentation()) { return true; } if (!myAnnotationField.getText().equals(myConfiguration.getLanguageAnnotationClass())) { return true; } if (!myPatternField.getText().equals(myConfiguration.getPatternAnnotationClass())) { return true; } if (!mySubstField.ge...
isModified
24,064
void () { myAnnotationField.setText(myConfiguration.getLanguageAnnotationClass()); myPatternField.setText(myConfiguration.getPatternAnnotationClass()); mySubstField.setText(myConfiguration.getSubstAnnotationClass()); myNoInstrumentation.setSelected(myConfiguration.getInstrumentation() == Configuration.InstrumentationTy...
reset
24,065
void (@NotNull final Configuration.DfaOption dfaOption) { switch (dfaOption) { case OFF -> myDfaOff.setSelected(true); case RESOLVE -> myAnalyzeReferences.setSelected(true); case ASSIGNMENTS -> myLookForAssignments.setSelected(true); case DFA -> myUseDfa.setSelected(true); } }
setDfaOption
24,066
PsiElementVisitor (@NotNull final ProblemsHolder holder, boolean isOnTheFly) { return new JavaElementVisitor() { final String annotationName = getAnnotationName(holder.getProject()); @Override public void visitAnnotation(@NotNull PsiAnnotation annotation) { final String name = annotation.getQualifiedName(); if (annotat...
buildVisitor
24,067
void (@NotNull PsiAnnotation annotation) { final String name = annotation.getQualifiedName(); if (annotationName.equals(name)) { checkAnnotation(annotation, holder); } else if (name != null) { final PsiClass psiClass = JavaPsiFacade.getInstance(annotation.getProject()).findClass(name, annotation.getResolveScope()); if ...
visitAnnotation
24,068
void (PsiAnnotation annotation, ProblemsHolder holder) { final PsiModifierListOwner owner = PsiTreeUtil.getParentOfType(annotation, PsiModifierListOwner.class); if (owner instanceof PsiVariable) { final PsiType type = ((PsiVariable)owner).getType(); if (isTypeApplicable(type)) { registerProblem(annotation, holder); } }...
checkAnnotation
24,069
void (PsiAnnotation annotation, ProblemsHolder holder) { holder.registerProblem(annotation, getDescriptionTemplate(), new RemoveAnnotationQuickFix(annotation, null)); }
registerProblem
24,070
Object (@NotNull PsiExpression e, @NotNull Configuration.DfaOption dfaOption, boolean includeUncomputablesAsLiterals, @NotNull List<? super PsiExpression> uncomputables) { ConcurrentMap<PsiElement, Object> map = new ConcurrentHashMap<>(); return myHelper.computeExpression(e, false, new PsiConstantEvaluationHelper.AuxEv...
computeExpression
24,071
void (@NotNull PsiElement element) { if (element instanceof PsiExpressionList) return; if (element instanceof PsiIdentifier) { if (sb.length() > 0) sb.append("."); sb.append(element.getText()); } super.visitElement(element); }
visitElement
24,072
PsiElement () { return myValue; }
getElement
24,073
TextRange () { return ElementManipulators.getValueTextRange(myValue); }
getRangeInElement
24,074
String () { return myValue.getText(); }
getCanonicalText
24,075
boolean (@NotNull PsiElement element) { return resolve() == element; }
isReferenceTo
24,076
String () { return (String)myValue.getValue(); }
getValue
24,077
PsiParameter (PsiElement element) { PsiElement p = element.getParent(); if (!(p instanceof PsiExpressionList list)) return null; PsiElement parent = list.getParent(); if (!(parent instanceof PsiCallExpression)) return null; PsiExpression[] arguments = list.getExpressions(); int i = ArrayUtil.indexOf(arguments, element)...
getParameterForArgument
24,078
boolean (final PsiElement place) { return place instanceof PsiLiteralExpression && PsiUtil.isJavaToken(place.getFirstChild(), ElementType.TEXT_LITERALS); }
isStringOrCharacterLiteral
24,079
boolean (@NotNull PsiType type) { if (type instanceof PsiClassType) { // optimization. doesn't require resolve final String shortName = ((PsiClassType)type).getClassName(); if (!Objects.equals(shortName, CommonClassNames.JAVA_LANG_STRING_SHORT)) return false; } return CommonClassNames.JAVA_LANG_STRING.equals(type.getCa...
isString
24,080
boolean (@NotNull PsiType type) { if (type instanceof PsiArrayType) { return isString(((PsiArrayType)type).getComponentType()); } else { return isString(type); } }
isStringOrStringArray
24,081
Document (final String s, final Project project) { if (ApplicationManager.getApplication().isUnitTestMode() || project.isDefault()) { return new DocumentImpl(s); } else { return JavaReferenceEditorUtil.createTypeDocument(s, project); } }
createDocument
24,082
boolean (final PsiModifierListOwner owner) { if (owner instanceof PsiMethod) { final PsiType returnType = ((PsiMethod)owner).getReturnType(); if (returnType == null || !isStringOrStringArray(returnType)) { return false; } } else if (owner instanceof PsiVariable) { final PsiType type = ((PsiVariable)owner).getType(); if...
isLanguageAnnotationTarget
24,083
List<Object> (@NotNull String prefix, String suffix, Ref<? super Boolean> unparsable, PsiElement[] operands) { ArrayList<Object> result = new ArrayList<>(); ContextComputationProcessor processor = new ContextComputationProcessor(operands[0].getProject()); addStringFragment(prefix, result); PsiElement topParent = Object...
collectOperands
24,084
void (String string, List<Object> result) { if (StringUtil.isEmpty(string)) return; int size = result.size(); Object last = size > 0? result.get(size -1) : null; if (last instanceof String) { result.set(size - 1, last + string); } else { result.add(string); } }
addStringFragment
24,085
void (PsiElement expression, List<Object> result, Ref<? super Boolean> unparsable) { if (expression instanceof PsiParenthesizedExpression) { collectOperands(((PsiParenthesizedExpression)expression).getExpression(), result, unparsable); } else if (expression instanceof PsiTypeCastExpression) { collectOperands(((PsiTypeC...
collectOperands
24,086
PsiElement (@NotNull PsiElement host) { PsiElement target = host; PsiElement parent = target.getParent(); for (; parent != null; target = parent, parent = target.getParent()) { if (parent instanceof PsiPolyadicExpression) continue; if (parent instanceof PsiParenthesizedExpression) continue; if (parent instanceof PsiCon...
getTopLevelInjectionTarget
24,087
PsiModifierListOwner (@Nullable PsiElement element, LookupType type) { while (element != null) { if (type == LookupType.PREFER_DECLARATION || type == LookupType.DECLARATION_ONLY) { if (element instanceof PsiReferenceExpression) { final PsiElement e = ((PsiReferenceExpression)element).resolve(); if (e instanceof PsiModi...
getAnnotatedElementFor
24,088
void (@Nullable PsiElement element, AnnotatedElementVisitor visitor) { if (element == null) return; for (PsiElement cur = ContextComputationProcessor.getTopLevelInjectionTarget(element); cur != null; cur = cur.getParent()) { if (cur instanceof PsiMethodCallExpression) break; if (!visitAnnotatedElementInner(cur, visitor...
visitAnnotatedElements
24,089
boolean (@NotNull PsiElement element, @NotNull AnnotatedElementVisitor visitor) { final PsiElement parent = element.getParent(); if (element instanceof PsiReferenceExpression) { if (parent instanceof PsiReferenceExpression) return false; // skip qualified references if (!visitor.visitReference((PsiReferenceExpression)e...
visitAnnotatedElementInner
24,090
PsiAnnotation[] (PsiModifierListOwner owner, Pair<String, ? extends Set<String>> annotationName, boolean allowIndirect, boolean inHierarchy) { final PsiAnnotation directAnnotation = inHierarchy? AnnotationUtil.findAnnotationInHierarchy(owner, annotationName.second) : AnnotationUtil.findAnnotation(owner, annotationName....
getAnnotationsFromImpl
24,091
PsiAnnotation[] (@NotNull PsiModifierListOwner owner, @NotNull Pair<String, ? extends Set<String>> annotationName, boolean allowIndirect) { return getAnnotationFrom(owner, annotationName, allowIndirect, true); }
getAnnotationFrom
24,092
String (PsiAnnotation[] annotation, @NonNls String attr) { for (PsiAnnotation psiAnnotation : annotation) { final String value = calcAnnotationValue(psiAnnotation, attr); if (value != null) return value; } return null; }
calcAnnotationValue
24,093
String (@NotNull PsiAnnotation annotation, @NonNls String attr) { PsiElement value = annotation.findAttributeValue(attr); Object o = CONSTANT_EVALUATION_HELPER.computeConstantExpression(value); if (o instanceof String) { return (String)o; } return null; }
calcAnnotationValue
24,094
PsiAnnotation[] (@NotNull final PsiModifierListOwner listOwner, final boolean inHierarchy) { final PsiModifierList modifierList = listOwner.getModifierList(); if (!inHierarchy) { return modifierList == null ? PsiAnnotation.EMPTY_ARRAY : modifierList.getAnnotations(); } return CachedValuesManager.getCachedValue(listOwne...
getAnnotations
24,095
PsiAnnotation[] (PsiModifierListOwner listOwner) { final Set<PsiAnnotation> all = new HashSet<>() { @Override public boolean add(PsiAnnotation o) { // don't overwrite "higher level" annotations return !contains(o) && super.add(o); } }; PsiModifierList modifierList = listOwner.getModifierList(); if (modifierList != null...
getHierarchyAnnotations
24,096
boolean (PsiAnnotation o) { // don't overwrite "higher level" annotations return !contains(o) && super.add(o); }
add
24,097
boolean (final PsiLanguageInjectionHost psiElement) { return PsiUtilEx.isStringOrCharacterLiteral(psiElement); }
isMine
24,098
String () { return JAVA_SUPPORT_ID; }
getId
24,099
Configurable[] (final Project project, final Configuration configuration) { return new Configurable[]{new AdvancedSettingsUI(project, configuration)}; }
createSettings