Unnamed: 0 int64 0 305k | body stringlengths 7 52.9k | name stringlengths 1 185 |
|---|---|---|
47,700 | String () { return "UnresolvedPropertyKey"; } | getAlternativeID |
47,701 | void () { final StringDescriptor descriptor = getStringDescriptorValue(); final Project project = myEditor.getProject(); PsiFile psiFile = myEditor.getPsiFile(); if (!JavaI18nizeQuickFixDialog.isAvailable(myEditor.getPsiFile())) { return; } String initialValue = StringUtil.escapeStringCharacters(descriptor.getValue());... | run |
47,702 | String () { return "#com.intellij.codeInsight.i18n.I18nizeQuickFixDialog_Form"; } | getDimensionServiceKey |
47,703 | String (Project project, PropertiesFile aPropertiesFile) { String packageName = PackageIndex.getInstance(project).getPackageNameByDirectory(aPropertiesFile.getVirtualFile().getParent()); if (packageName == null) return null; String bundleName; if (!packageName.isEmpty()) { bundleName = packageName + "." + aPropertiesFi... | getBundleName |
47,704 | StringDescriptor () { return myAccessor.getStringDescriptorValue(); } | getStringDescriptorValue |
47,705 | RadComponent () { return myComponent; } | getComponent |
47,706 | StringDescriptor () { return (StringDescriptor) myProperty.getValue(myComponent); } | getStringDescriptorValue |
47,707 | String () { return "HardCodedStringLiteral"; } | getAlternativeID |
47,708 | void (final Module module, final IComponent component, final IProperty prop, final StringDescriptor descriptor, final FormErrorCollector collector) { if (isHardCodedStringDescriptor(descriptor)) { if (isPropertyDescriptor(prop)) { if (isSetterNonNls(module.getProject(), GlobalSearchScope.moduleWithDependenciesAndLibrar... | checkStringDescriptor |
47,709 | QuickFix (GuiEditor editor, @NotNull RadComponent component12) { return new I18nizeFormQuickFix(editor, UIDesignerBundle.message("i18n.quickfix.border.title"), new FormBorderStringDescriptorAccessor((RadContainer)component12)); } | createQuickFix |
47,710 | QuickFix (GuiEditor editor, @NotNull RadComponent component1) { return new I18nizeFormQuickFix(editor, UIDesignerBundle.message("i18n.quickfix.tab.title", prop.getName()), new TabTitleStringDescriptorAccessor(component1, prop.getName())); } | createQuickFix |
47,711 | QuickFix (GuiEditor editor, @NotNull RadComponent component13) { return new I18nizeFormQuickFix(editor, UIDesignerBundle.message("i18n.quickfix.property", prop.getName()), new FormPropertyStringDescriptorAccessor(component13, (IntrospectedProperty)prop)); } | createQuickFix |
47,712 | boolean (final IProperty prop) { return !prop.getName().equals(BorderProperty.NAME) && !prop.getName().equals(ITabbedPane.TAB_TITLE_PROPERTY) && !prop.getName().equals(ITabbedPane.TAB_TOOLTIP_PROPERTY); } | isPropertyDescriptor |
47,713 | boolean (final StringDescriptor descriptor) { return !descriptor.isNoI18n() && descriptor.getBundleName() == null && descriptor.getKey() == null && StringUtil.containsAlphaCharacters(descriptor.getValue()); } | isHardCodedStringDescriptor |
47,714 | boolean (final Project project, final GlobalSearchScope searchScope, final String componentClassName, final String propertyName) { PsiClass componentClass = JavaPsiFacade.getInstance(project).findClass(componentClassName, searchScope); if (componentClass == null) { return false; } PsiMethod setter = PropertyUtilBase.fi... | isSetterNonNls |
47,715 | RadComponent () { return myComponent; } | getComponent |
47,716 | StringDescriptor () { RadTabbedPane tabbedPane = (RadTabbedPane) myComponent.getParent(); return tabbedPane.getTabProperty(myComponent, myPropName); } | getStringDescriptorValue |
47,717 | void (final LwComponent component, final FormSourceCodeGenerator generator, final String variable, final String parentVariable) { generator.startMethodCall(parentVariable, "add"); generator.pushVar(variable); generator.endMethod(); } | generateComponentLayout |
47,718 | void (final LwContainer component, final FormSourceCodeGenerator generator, final String variable) { } | generateContainerLayout |
47,719 | String (final String componentClassName) { return componentClassName.replace("$", "."); } | mapComponentClass |
47,720 | void (final LwContainer component, final FormSourceCodeGenerator generator, final String variable, final Class<? extends LayoutManager> layoutClass) { generator.startMethodCall(variable, "setLayout"); generator.startConstructor(layoutClass.getName()); generator.push(Utils.getHGap(component.getLayout())); generator.push... | generateLayoutWithGaps |
47,721 | void (final LwContainer component, final FormSourceCodeGenerator generator, final String variable) { FormLayout layout = (FormLayout) component.getLayout(); generator.startMethodCall(variable, "setLayout"); generator.startConstructor(FormLayout.class.getName()); generator.push(FormLayoutUtils.getEncodedColumnSpecs(layo... | generateContainerLayout |
47,722 | void (final FormSourceCodeGenerator generator, final String variable, @NonNls final String methodName, final int[][] groups) { if (groups.length == 0) return; generator.startMethodCall("((com.jgoodies.forms.layout.FormLayout) " + variable + ".getLayout())", methodName); @NonNls StringBuilder groupBuilder = new StringBu... | generateGroups |
47,723 | void (final LwComponent component, final FormSourceCodeGenerator generator, final String variable, final String parentVariable) { if (!myHaveCc) { generator.append("com.jgoodies.forms.layout.CellConstraints cc = new com.jgoodies.forms.layout.CellConstraints();\n"); myHaveCc = true; } generator.startMethodCall(parentVar... | generateComponentLayout |
47,724 | String (LwRootContainer container) { PsiClass psiClass = JavaPsiFacade.getInstance(myModule.getProject()).findClass(container.getClassToBind(), myModule.getModuleWithDependenciesScope()); if (psiClass != null) { return ClassUtil.getJVMClassName(psiClass); } return container.getClassToBind(); } | getClassToBindName |
47,725 | void (final LwComponent component, @NonNls final FormSourceCodeGenerator generator, final String variable, final String parentVariable) { generator.startMethodCall(parentVariable, "add"); generator.pushVar(variable); generator.checkParameter(); generator.append("BorderLayout." + StringUtil.toUpperCase(((String) compone... | generateComponentLayout |
47,726 | void (final LwComponent component, final FormSourceCodeGenerator generator, final String variable, final String parentVariable) { generator.startMethodCall(parentVariable, "setViewportView"); generator.pushVar(variable); generator.endMethod(); } | generateComponentLayout |
47,727 | void (final LwComponent component, final FormSourceCodeGenerator generator, final String variable, final String parentVariable) { @NonNls final String methodName = LwSplitPane.POSITION_LEFT.equals(component.getCustomLayoutConstraints()) ? "setLeftComponent" : "setRightComponent"; generator.startMethodCall(parentVariabl... | generateComponentLayout |
47,728 | void (final LwContainer container, final FormSourceCodeGenerator generator, final String variable) { if (container.isXY()) { if (container.getComponentCount() != 0) { throw new IllegalStateException("only empty xys are accepted"); } // no layout needed } else { if (container.isGrid()) { final GridLayoutManager layout =... | generateContainerLayout |
47,729 | void (final LwComponent component, final FormSourceCodeGenerator generator, final String variable, final String parentVariable) { generator.startMethodCall(parentVariable, "add"); generator.pushVar(variable); addNewGridConstraints(generator, component); generator.endMethod(); } | generateComponentLayout |
47,730 | void (final FormSourceCodeGenerator generator, final LwComponent component) { final GridConstraints constraints = component.getConstraints(); generator.startConstructor(GridConstraints.class.getName()); generator.push(constraints.getRow()); generator.push(constraints.getColumn()); generator.push(constraints.getRowSpan(... | addNewGridConstraints |
47,731 | void (final FormSourceCodeGenerator generator, final int value) { final String className = GridConstraints.class.getName(); @NonNls String presentation; if (GridConstraints.SIZEPOLICY_FIXED == value) { presentation = className + ".SIZEPOLICY_FIXED"; } else { if ((value & GridConstraints.SIZEPOLICY_CAN_SHRINK) != 0) { p... | pushSizePolicy |
47,732 | Int2ObjectMap<String> (final Class<GridConstraints> aClass, @NonNls final String prefix) { final Int2ObjectMap<String> map = new Int2ObjectOpenHashMap<>(); final Field[] fields = aClass.getFields(); for (final Field field : fields) { if ((field.getModifiers() & Modifier.STATIC) != 0 && field.getName().startsWith(prefix... | fillMap |
47,733 | void (final LwContainer container, final FormSourceCodeGenerator generator, final String variable) { generator.startMethodCall(variable, "setLayout"); generator.startConstructor(GridBagLayout.class.getName()); generator.endConstructor(); generator.endMethod(); } | generateContainerLayout |
47,734 | void (final LwComponent component, final FormSourceCodeGenerator generator, final String variable, final String parentVariable) { GridBagConstraints gbc; if (component.getCustomLayoutConstraints() instanceof GridBagConstraints) { gbc = (GridBagConstraints) component.getCustomLayoutConstraints(); } else { gbc = new Grid... | generateComponentLayout |
47,735 | void (final FormSourceCodeGenerator generator, final GridBagConverter.Result result, final String variable, final String parentVariable) { checkSetSize(generator, variable, "setMinimumSize", result.minimumSize); checkSetSize(generator, variable, "setPreferredSize", result.preferredSize); checkSetSize(generator, variabl... | generateConversionResult |
47,736 | void (final FormSourceCodeGenerator generator, final GridBagConstraints constraints, final String variable, final String parentVariable) { if (!myHaveGbc) { generator.append("java.awt.GridBagConstraints gbc;\n"); myHaveGbc = true; } generator.append("gbc = new java.awt.GridBagConstraints();\n"); GridBagConstraints defa... | generateGridBagConstraints |
47,737 | void (final FormSourceCodeGenerator generator, @NonNls final String fieldName, final int value) { generator.append("gbc."); generator.append(fieldName); generator.append("="); generator.append(value); generator.append(";\n"); } | setIntField |
47,738 | void (final FormSourceCodeGenerator generator, @NonNls final String fieldName, final int value, final Int2ObjectMap<String> map) { generator.append("gbc."); generator.append(fieldName); generator.append("="); if (map.containsKey(value)) { generator.append(map.get(value)); } else { generator.append(value); } generator.a... | setIntField |
47,739 | void (final FormSourceCodeGenerator generator, @NonNls final String fieldName, final double value) { generator.append("gbc."); generator.append(fieldName); generator.append("="); generator.append(value); generator.append(";\n"); } | setDoubleField |
47,740 | void (final FormSourceCodeGenerator generator, final String variable, @NonNls final String methodName, final Dimension dimension) { if (dimension != null) { generator.startMethodCall(variable, methodName); generator.newDimension(dimension); generator.endMethod(); } } | checkSetSize |
47,741 | String (final String componentClassName) { if (componentClassName.equals(Spacer.class.getName())) { return JPanel.class.getName(); } return super.mapComponentClass(componentClassName); } | mapComponentClass |
47,742 | void (final LwContainer component, final FormSourceCodeGenerator generator, final String variable) { generateLayoutWithGaps(component, generator, variable, CardLayout.class); } | generateContainerLayout |
47,743 | void (final LwComponent component, final FormSourceCodeGenerator generator, final String variable, final String parentVariable) { generator.startMethodCall(parentVariable, "add"); generator.pushVar(variable); generator.push((String) component.getCustomLayoutConstraints()); generator.endMethod(); } | generateComponentLayout |
47,744 | void (final LwComponent component, final FormSourceCodeGenerator generator, final String variable, final String parentVariable) { generator.startMethodCall(parentVariable, "add"); generator.pushVar(variable); generator.endMethod(); } | generateComponentLayout |
47,745 | void (boolean requestFocus) { if (!myVirtualFile.isValid()) return; OpenFileDescriptor descriptor = new OpenFileDescriptor(myProject, myVirtualFile); final List<FileEditor> fileEditors = FileEditorManager.getInstance(myProject).openEditor(descriptor, requestFocus); if (myComponentId != null) { for(FileEditor editor: fi... | navigate |
47,746 | boolean () { return myVirtualFile.isValid(); } | canNavigate |
47,747 | boolean () { return myVirtualFile.isValid(); } | canNavigateToSource |
47,748 | void (final LwComponent component, final FormSourceCodeGenerator generator, final String variable, final String parentVariable) { final LwTabbedPane.Constraints tabConstraints = (LwTabbedPane.Constraints)component.getCustomLayoutConstraints(); if (tabConstraints == null){ throw new IllegalArgumentException("tab constra... | generateComponentLayout |
47,749 | String (final VirtualFile formFile) { if (myCache != null) { try { final String formUrl = formFile.getUrl(); final MyState state = myCache.getState(formUrl); if (state != null) { if (formFile.getTimeStamp() == state.getFormTimeStamp()) { return state.getClassName(); } } } catch (IOException e) { myCache.wipe(); } } ret... | getSavedBinding |
47,750 | void (final VirtualFile formFile, final String classToBind) { if (myCache != null) { final String url = formFile.getUrl(); final MyState state = new MyState(formFile.getTimeStamp(), classToBind); try { myCache.update(url, state); } catch (IOException e) { LOG.info(e); myCache.wipe(); try { myCache.update(url, state); }... | updateCache |
47,751 | void () { try { myCache.close(); } catch (IOException e) { LOG.info(e); } } | close |
47,752 | long () { return myFormTimeStamp; } | getFormTimeStamp |
47,753 | String () { return myClassName; } | getClassName |
47,754 | VirtualFile (final CompileContext context, final VirtualFile formFile, final String className) { final Module module = context.getModuleByFile(formFile); if (module == null) { return null; } final PsiClass aClass = FormEditingUtil.findClassToBind(module, className); if (aClass == null) { return null; } final PsiFile co... | findSourceFile |
47,755 | String () { return UIDesignerBundle.message("component.gui.designer.form.to.source.compiler"); } | getDescription |
47,756 | boolean (CompileScope scope) { return true; } | validateConfiguration |
47,757 | ProcessingItem[] (final @NotNull CompileContext context, final ProcessingItem @NotNull [] items) { final ArrayList<ProcessingItem> compiledItems = new ArrayList<>(); context.getProgressIndicator().setText(UIDesignerBundle.message("progress.compiling.ui.forms")); int formsProcessed = 0; final Project project = context.g... | process |
47,758 | void (final CompileContext context, final FormErrorInfo e, final VirtualFile formFile) { @NlsSafe String message = e.getErrorMessage(); if (formFile != null) { FormElementNavigatable navigatable = new FormElementNavigatable(context.getProject(), formFile, e.getComponentId()); context.addMessage(CompilerMessageCategory.... | addError |
47,759 | VirtualFile () { return mySourceFile; } | getFile |
47,760 | VirtualFile () { return myFormFile; } | getFormFile |
47,761 | ValidityState () { return myState; } | getValidityState |
47,762 | Set<FileType> () { return Collections.singleton(GuiFormFileType.INSTANCE); } | getCompilableFileTypes |
47,763 | void (final VirtualFile formFile) { myNeedLoadLabelText = false; myNeedLoadButtonText = false; myNeedGetMessageFromBundle = false; myGetFontMethod = null; final Module module = ModuleUtilCore.findModuleForFile(formFile, myProject); if (module == null) { return; } // ensure that new instances of generators are used for ... | generate |
47,764 | boolean (final LwComponent iComponent) { final ErrorInfo errorInfo = ErrorAnalyzer.getErrorForComponent(iComponent); if (errorInfo != null) { String message; if (iComponent.getBinding() != null) { message = UIDesignerBundle.message("error.for.component", iComponent.getBinding(), errorInfo.myDescription); } else { messa... | visit |
47,765 | ArrayList<FormErrorInfo> () { return myErrors; } | getErrors |
47,766 | void (final PsiMethod constructor, final LwRootContainer rootContainer, final PsiMethod setupUIMethod) { final PsiCodeBlock psiCodeBlock = constructor.getBody(); if (psiCodeBlock == null) { return; } final PsiClass classToBind = constructor.getContainingClass(); final PsiStatement[] statements = psiCodeBlock.getStateme... | addSetupUICall |
47,767 | boolean (final PsiElement element, final PsiClass classToBind, final LwRootContainer rootContainer, @Nullable final Ref<? super Boolean> callsThisConstructor) { final Ref<Boolean> result = new Ref<>(Boolean.FALSE); element.accept(new JavaRecursiveElementWalkingVisitor() { @Override public void visitReferenceExpression(... | hasCustomComponentAffectingReferences |
47,768 | boolean (final PsiClass classToBind, final PsiClass newClass) { Lexer oldTextLexer = JavaParserDefinition.createLexer(LanguageLevel.HIGHEST); Lexer newTextLexer = JavaParserDefinition.createLexer(LanguageLevel.HIGHEST); String oldBuffer = classToBind.getText(); String newBuffer = newClass.getText(); oldTextLexer.start(... | lexemsEqual |
47,769 | String (final String methodName, final Class componentClass, Module module) { final boolean needIndex = haveSetDisplayedMnemonic(componentClass, module); return "/** @noinspection ALL */ " + "private void " + methodName + "(" + componentClass.getName() + " component, java.lang.String text) {" + " StringBuffer result = ... | getLoadMethodText |
47,770 | void (PsiClass aClass, PsiMethod anchor, PsiElementFactory elementFactory, boolean condition) { String dynamicBundleClassName = DynamicBundle.class.getName(); String methodName = AsmCodeGenerator.GET_MESSAGE_FROM_BUNDLE; for (PsiMethod oldMethod : aClass.findMethodsByName(methodName, false)) { oldMethod.delete(); } Str... | generateGetMessageFromBundle |
47,771 | boolean (final PsiElement element, final PsiMethod setupMethod) { if (element instanceof PsiMethodCallExpression) { final PsiMethod psiMethod = ((PsiMethodCallExpression)element).resolveMethod(); if (setupMethod.equals(psiMethod)){ return true; } } final PsiElement[] children = element.getChildren(); for (int i = child... | containsMethodIdentifier |
47,772 | void (final String variable, final SupportCode.TextWithMnemonic textWithMnemonic, final Module module, @NonNls final String setMethodName, final Class controlClass) { startMethodCall(variable, setMethodName); pushVar("'" + textWithMnemonic.getMnemonicChar() + "'"); endMethod(); if (haveSetDisplayedMnemonic(controlClass... | generateSetMnemonic |
47,773 | boolean (final Class controlClass, final Module module) { PsiClass aClass = JavaPsiFacade.getInstance(myProject).findClass(controlClass.getName(), module.getModuleWithLibrariesScope()); return aClass != null && aClass.findMethodsByName("setDisplayedMnemonicIndex", true).length > 0; } | haveSetDisplayedMnemonic |
47,774 | void (final LwIntrospectedProperty property, final Object2IntMap<String> class2variableIndex, final PsiClass aClass, final Object value, final String variable) { String valueClassName; if (property.getPropertyClassName().equals(ComboBoxModel.class.getName())) { valueClassName = DefaultComboBoxModel.class.getName(); } e... | generateListModelProperty |
47,775 | void (final LwContainer container, final String variable, final GlobalSearchScope scope) { final BorderType borderType = container.getBorderType(); final StringDescriptor borderTitle = container.getBorderTitle(); final Insets borderSize = container.getBorderSize(); final String borderFactoryMethodName = borderType.getB... | generateBorder |
47,776 | String (LwContainer container, StringDescriptor borderTitle, GlobalSearchScope scope) { StringDescriptor titledBorderFactoryDescriptor = (StringDescriptor)container.getDelegeeClientProperties().get(AsmCodeGenerator.ourBorderFactoryClientProperty); boolean useIdeBorderFactory = borderTitle != null && Boolean.valueOf(Sys... | borderFactoryClassName |
47,777 | void (LwContainer container, String variable, StringDescriptor borderTitle) { push(borderTitle); push(container.getBorderTitleJustification(), ourTitleJustificationMap); push(container.getBorderTitlePosition(), ourTitlePositionMap); pushFont(container, variable); pushColor(container); } | pushBorderProperties |
47,778 | void (LwContainer container) { if (container.getBorderTitleColor() == null) { push((String) null); } else { pushColor(container.getBorderTitleColor()); } } | pushColor |
47,779 | void (LwContainer container, String variable) { if (container.getBorderTitleFont() == null) { push((String) null); } else { pushFont(variable, container.getBorderTitleFont(), "getFont"); } } | pushFont |
47,780 | void (LwContainer container, BorderType borderType, Insets borderSize, String borderFactoryMethodName) { startStaticMethodCall(BorderFactory.class, borderFactoryMethodName); if (borderType.equals(BorderType.LINE)) { if (container.getBorderColor() == null) { pushVar("java.awt.Color.black"); } else { pushColor(container.... | pushBorderFactoryMethod |
47,781 | boolean (final LwContainer container) { return container.getBorderTitleJustification() != 0 || container.getBorderTitlePosition() != 0 || container.getBorderTitleColor() != null || container.getBorderTitleFont() != null; } | isCustomBorder |
47,782 | void (final LwComponent component, final HashMap<LwComponent, String> component2variable, final Object2IntMap<String> class2variableIndex, final HashMap<String, LwComponent> id2component, final PsiClass aClass) { String variable = getVariable(component, component2variable, class2variableIndex, aClass); final LwIntrospe... | generateComponentReferenceProperties |
47,783 | void (final LwRootContainer rootContainer, final HashMap<LwComponent, String> component2variable, final Object2IntMap<String> class2variableIndex, final HashMap<String, LwComponent> id2component, final PsiClass aClass) { IButtonGroup[] groups = rootContainer.getButtonGroups(); boolean haveGroupDeclaration = false; for(... | generateButtonGroups |
47,784 | LayoutSourceGenerator (final LwContainer container) { LayoutSourceGenerator generator = ourComponentLayoutCodeGenerators.get(container.getClass()); if (generator != null) { return generator; } LwContainer parent = container; while(parent != null) { final String layoutManager = parent.getLayoutManager(); if (layoutManag... | getComponentLayoutGenerator |
47,785 | void (final ColorDescriptor descriptor) { if (descriptor.getColor() != null) { startConstructor(Color.class.getName()); push(descriptor.getColor().getRGB()); endConstructor(); } else if (descriptor.getSwingColor() != null) { startStaticMethodCall(UIManager.class, "getColor"); push(descriptor.getSwingColor()); endMethod... | pushColor |
47,786 | void (String variable, FontDescriptor fontDescriptor, String getterName, String setterName) { myBuffer.append("java.awt.Font ").append(variable).append("Font = "); pushFont(variable, fontDescriptor, getterName); myBuffer.append("if (").append(variable).append("Font != null) ").append(variable).append(".").append(setter... | pushFontProperty |
47,787 | void (final String variable, final FontDescriptor fontDescriptor, @NonNls final String getterName) { if (fontDescriptor.getSwingFont() != null) { startStaticMethodCall(UIManager.class, "getFont"); push(fontDescriptor.getSwingFont()); endMethod(); } else { if (myGetFontMethod == null) { myGetFontMethod = AsmCodeGenerato... | pushFont |
47,788 | void (final IconDescriptor iconDescriptor) { startConstructor(ImageIcon.class.getName()); startMethodCall("getClass()", "getResource"); push("/" + iconDescriptor.getIconPath()); endMethod(); endMethod(); } | pushIcon |
47,789 | boolean (final String className, final String fromName, final GlobalSearchScope scope) { final PsiClass aClass = JavaPsiFacade.getInstance(myProject).findClass(className, scope); final PsiClass fromClass = JavaPsiFacade.getInstance(myProject).findClass(fromName, scope); if (aClass == null || fromClass == null) { return... | isAssignableFrom |
47,790 | String (final LwComponent component, final HashMap<LwComponent, String> component2variable, final Object2IntMap<String> class2variableIndex, final PsiClass aClass) { if (component2variable.containsKey(component)) { return component2variable.get(component); } if (component.getBinding() != null) { return component.getBin... | getVariable |
47,791 | String (@NonNls final String className, final Object2IntMap<String> class2variableIndex, final PsiClass aClass) { final String shortName; if (className.startsWith("javax.swing.J")) { shortName = className.substring("javax.swing.J".length()); } else { final int idx = className.lastIndexOf('.'); if (idx != -1) { shortNam... | generateUniqueVariableName |
47,792 | void (final Rectangle rectangle) { startConstructor(Rectangle.class.getName()); push(rectangle.x); push(rectangle.y); push(rectangle.width); push(rectangle.height); endConstructor(); } | newRectangle |
47,793 | void (final String fullClassName, @NonNls final String methodName) { checkParameter(); myBuffer.append(fullClassName); myBuffer.append('.'); myBuffer.append(methodName); myBuffer.append('('); myIsFirstParameterStack.push(true); } | startStaticMethodCall |
47,794 | void (final Class aClass, @NonNls final String methodName) { startStaticMethodCall(aClass.getCanonicalName(), methodName); } | startStaticMethodCall |
47,795 | void (final double value) { checkParameter(); append(value); } | push |
47,796 | void (final double value) { myBuffer.append(value); } | append |
47,797 | void (final float value) { checkParameter(); append(value); } | push |
47,798 | void (final float value) { myBuffer.append(value).append("f"); } | append |
47,799 | void (final long value) { checkParameter(); append(value); } | push |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.