org.eclipse.jdt.internal.core.util.Util.toString()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(11.5k)|赞(0)|评价(0)|浏览(211)

本文整理了Java中org.eclipse.jdt.internal.core.util.Util.toString()方法的一些代码示例,展示了Util.toString()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.toString()方法的具体详情如下:
包路径:org.eclipse.jdt.internal.core.util.Util
类名称:Util
方法名:toString

Util.toString介绍

[英]Converts a char[][] to String, where segments are separated by '.'.
[中]将字符[]转换为字符串,其中段以“.”分隔。

代码示例

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

  1. private String returnMethodSignature(IConstantPoolEntry constantMethodref) {
  2. final char[] methodDescriptor = constantMethodref.getMethodDescriptor();
  3. CharOperation.replace(methodDescriptor, '$', '#');
  4. final char[] signature = Util.toString(
  5. constantMethodref.getClassName(),
  6. constantMethodref.getMethodName(),
  7. methodDescriptor,
  8. true,
  9. isCompact()).toCharArray();
  10. CharOperation.replace(signature, '#', '$');
  11. return String.valueOf(signature);
  12. }

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

  1. private String returnMethodSignature(IConstantPoolEntry constantMethodref) {
  2. final char[] methodDescriptor = constantMethodref.getMethodDescriptor();
  3. CharOperation.replace(methodDescriptor, '$', '#');
  4. final char[] signature = Util.toString(
  5. constantMethodref.getClassName(),
  6. constantMethodref.getMethodName(),
  7. methodDescriptor,
  8. true,
  9. isCompact()).toCharArray();
  10. CharOperation.replace(signature, '#', '$');
  11. return String.valueOf(signature);
  12. }

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. private String returnMethodSignature(IConstantPoolEntry constantMethodref) {
  2. final char[] methodDescriptor = constantMethodref.getMethodDescriptor();
  3. CharOperation.replace(methodDescriptor, '$', '#');
  4. final char[] signature = Util.toString(
  5. constantMethodref.getClassName(),
  6. constantMethodref.getMethodName(),
  7. methodDescriptor,
  8. true,
  9. isCompact()).toCharArray();
  10. CharOperation.replace(signature, '#', '$');
  11. return String.valueOf(signature);
  12. }

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

  1. private String returnMethodSignature(IConstantPoolEntry constantMethodref) {
  2. final char[] methodDescriptor = constantMethodref.getMethodDescriptor();
  3. CharOperation.replace(methodDescriptor, '$', '#');
  4. final char[] signature = Util.toString(
  5. constantMethodref.getClassName(),
  6. constantMethodref.getMethodName(),
  7. methodDescriptor,
  8. true,
  9. isCompact()).toCharArray();
  10. CharOperation.replace(signature, '#', '$');
  11. return String.valueOf(signature);
  12. }

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. private String returnMethodSignature(IConstantPoolEntry constantMethodref) {
  2. final char[] methodDescriptor = constantMethodref.getMethodDescriptor();
  3. CharOperation.replace(methodDescriptor, '$', '#');
  4. final char[] signature = Util.toString(
  5. constantMethodref.getClassName(),
  6. constantMethodref.getMethodName(),
  7. methodDescriptor,
  8. true,
  9. isCompact()).toCharArray();
  10. CharOperation.replace(signature, '#', '$');
  11. return String.valueOf(signature);
  12. }

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. private String returnMethodSignature(IConstantPoolEntry constantMethodref) {
  2. final char[] methodDescriptor = constantMethodref.getMethodDescriptor();
  3. CharOperation.replace(methodDescriptor, '$', '#');
  4. final char[] signature = Util.toString(
  5. constantMethodref.getClassName(),
  6. constantMethodref.getMethodName(),
  7. methodDescriptor,
  8. true,
  9. isCompact()).toCharArray();
  10. CharOperation.replace(signature, '#', '$');
  11. return String.valueOf(signature);
  12. }

代码示例来源:origin: com.vaadin/vaadin-client-compiler-deps

  1. private String returnMethodSignature(IConstantPoolEntry constantMethodref) {
  2. final char[] methodDescriptor = constantMethodref.getMethodDescriptor();
  3. CharOperation.replace(methodDescriptor, '$', '#');
  4. final char[] signature = Util.toString(
  5. constantMethodref.getClassName(),
  6. constantMethodref.getMethodName(),
  7. methodDescriptor,
  8. true,
  9. isCompact()).toCharArray();
  10. CharOperation.replace(signature, '#', '$');
  11. return String.valueOf(signature);
  12. }

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. /**
  2. * @see IBytecodeVisitor#_invokeinterface(int, int, byte, IConstantPoolEntry)
  3. */
  4. public void _invokeinterface(
  5. int pc,
  6. int index,
  7. byte nargs,
  8. IConstantPoolEntry constantInterfaceMethodref) {
  9. dumpPcNumber(pc);
  10. this.buffer.append(Messages.bind(Messages.classformat_invokeinterface, new String[] {
  11. OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEINTERFACE],
  12. Integer.toString(index),
  13. Integer.toString(nargs),
  14. Util.toString(
  15. constantInterfaceMethodref.getClassName(),
  16. constantInterfaceMethodref.getMethodName(),
  17. constantInterfaceMethodref.getMethodDescriptor(),
  18. true,
  19. isCompact())
  20. }));
  21. writeNewLine();
  22. }

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

  1. /**
  2. * @see IBytecodeVisitor#_invokeinterface(int, int, byte, IConstantPoolEntry)
  3. */
  4. @Override
  5. public void _invokeinterface(
  6. int pc,
  7. int index,
  8. byte nargs,
  9. IConstantPoolEntry constantInterfaceMethodref) {
  10. dumpPcNumber(pc);
  11. this.buffer.append(Messages.bind(Messages.classformat_invokeinterface, new String[] {
  12. OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEINTERFACE],
  13. Integer.toString(index),
  14. Integer.toString(nargs),
  15. Util.toString(
  16. constantInterfaceMethodref.getClassName(),
  17. constantInterfaceMethodref.getMethodName(),
  18. constantInterfaceMethodref.getMethodDescriptor(),
  19. true,
  20. isCompact())
  21. }));
  22. writeNewLine();
  23. }

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. /**
  2. * @see IBytecodeVisitor#_invokedynamic(int, int, IConstantPoolEntry)
  3. */
  4. public void _invokedynamic(
  5. int pc,
  6. int index,
  7. IConstantPoolEntry nameEntry,
  8. IConstantPoolEntry descriptorEntry) {
  9. dumpPcNumber(pc);
  10. this.buffer.append(Messages.bind(Messages.classformat_invokedynamic, new String[] {
  11. OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEDYNAMIC],
  12. Integer.toString(index),
  13. Util.toString(
  14. null,
  15. nameEntry.getUtf8Value(),
  16. descriptorEntry.getUtf8Value(),
  17. true,
  18. isCompact())
  19. }));
  20. writeNewLine();
  21. }
  22. /**

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

  1. /**
  2. * @see IBytecodeVisitor#_invokedynamic(int, int, IConstantPoolEntry)
  3. */
  4. @Override
  5. public void _invokedynamic(
  6. int pc,
  7. int index,
  8. IConstantPoolEntry nameEntry,
  9. IConstantPoolEntry descriptorEntry) {
  10. dumpPcNumber(pc);
  11. this.buffer.append(Messages.bind(Messages.classformat_invokedynamic, new String[] {
  12. OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEDYNAMIC],
  13. Integer.toString(index),
  14. Util.toString(
  15. null,
  16. nameEntry.getUtf8Value(),
  17. descriptorEntry.getUtf8Value(),
  18. true,
  19. isCompact())
  20. }));
  21. writeNewLine();
  22. }
  23. /**

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. /**
  2. * @see IBytecodeVisitor#_invokedynamic(int, int, IConstantPoolEntry)
  3. */
  4. public void _invokedynamic(
  5. int pc,
  6. int index,
  7. IConstantPoolEntry invokeDynamicEntry) {
  8. dumpPcNumber(pc);
  9. IConstantPoolEntry2 entry = (IConstantPoolEntry2) invokeDynamicEntry;
  10. this.buffer.append(Messages.bind(Messages.classformat_invokedynamic,
  11. new String[] {
  12. OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEDYNAMIC],
  13. Integer.toString(index),
  14. Integer.toString(entry.getBootstrapMethodAttributeIndex()),
  15. Util.toString(
  16. null,
  17. entry.getMethodName(),
  18. entry.getMethodDescriptor(),
  19. true,
  20. isCompact())
  21. }));
  22. writeNewLine();
  23. }
  24. /**

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. /**
  2. * @see IBytecodeVisitor#_invokeinterface(int, int, byte, IConstantPoolEntry)
  3. */
  4. public void _invokeinterface(
  5. int pc,
  6. int index,
  7. byte nargs,
  8. IConstantPoolEntry constantInterfaceMethodref) {
  9. dumpPcNumber(pc);
  10. this.buffer.append(Messages.bind(Messages.classformat_invokeinterface, new String[] {
  11. OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEINTERFACE],
  12. Integer.toString(index),
  13. Integer.toString(nargs),
  14. Util.toString(
  15. constantInterfaceMethodref.getClassName(),
  16. constantInterfaceMethodref.getMethodName(),
  17. constantInterfaceMethodref.getMethodDescriptor(),
  18. true,
  19. isCompact())
  20. }));
  21. writeNewLine();
  22. }

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

  1. /**
  2. * @see IBytecodeVisitor#_invokeinterface(int, int, byte, IConstantPoolEntry)
  3. */
  4. public void _invokeinterface(
  5. int pc,
  6. int index,
  7. byte nargs,
  8. IConstantPoolEntry constantInterfaceMethodref) {
  9. dumpPcNumber(pc);
  10. this.buffer.append(Messages.bind(Messages.classformat_invokeinterface, new String[] {
  11. OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEINTERFACE],
  12. Integer.toString(index),
  13. Integer.toString(nargs),
  14. Util.toString(
  15. constantInterfaceMethodref.getClassName(),
  16. constantInterfaceMethodref.getMethodName(),
  17. constantInterfaceMethodref.getMethodDescriptor(),
  18. true,
  19. isCompact())
  20. }));
  21. writeNewLine();
  22. }

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. /**
  2. * @see IBytecodeVisitor#_invokeinterface(int, int, byte, IConstantPoolEntry)
  3. */
  4. public void _invokeinterface(
  5. int pc,
  6. int index,
  7. byte nargs,
  8. IConstantPoolEntry constantInterfaceMethodref) {
  9. dumpPcNumber(pc);
  10. this.buffer.append(Messages.bind(Messages.classformat_invokeinterface, new String[] {
  11. OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEINTERFACE],
  12. Integer.toString(index),
  13. Integer.toString(nargs),
  14. Util.toString(
  15. constantInterfaceMethodref.getClassName(),
  16. constantInterfaceMethodref.getMethodName(),
  17. constantInterfaceMethodref.getMethodDescriptor(),
  18. true,
  19. isCompact())
  20. }));
  21. writeNewLine();
  22. }

代码示例来源:origin: com.vaadin/vaadin-client-compiler-deps

  1. /**
  2. * @see IBytecodeVisitor#_invokeinterface(int, int, byte, IConstantPoolEntry)
  3. */
  4. public void _invokeinterface(
  5. int pc,
  6. int index,
  7. byte nargs,
  8. IConstantPoolEntry constantInterfaceMethodref) {
  9. dumpPcNumber(pc);
  10. this.buffer.append(Messages.bind(Messages.classformat_invokeinterface, new String[] {
  11. OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEINTERFACE],
  12. Integer.toString(index),
  13. Integer.toString(nargs),
  14. Util.toString(
  15. constantInterfaceMethodref.getClassName(),
  16. constantInterfaceMethodref.getMethodName(),
  17. constantInterfaceMethodref.getMethodDescriptor(),
  18. true,
  19. isCompact())
  20. }));
  21. writeNewLine();
  22. }

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

  1. /**
  2. * @see IBytecodeVisitor#_invokeinterface(int, int, byte, IConstantPoolEntry)
  3. */
  4. public void _invokeinterface(
  5. int pc,
  6. int index,
  7. byte nargs,
  8. IConstantPoolEntry constantInterfaceMethodref) {
  9. dumpPcNumber(pc);
  10. this.buffer.append(Messages.bind(Messages.classformat_invokeinterface, new String[] {
  11. OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEINTERFACE],
  12. Integer.toString(index),
  13. Integer.toString(nargs),
  14. Util.toString(
  15. constantInterfaceMethodref.getClassName(),
  16. constantInterfaceMethodref.getMethodName(),
  17. constantInterfaceMethodref.getMethodDescriptor(),
  18. true,
  19. isCompact())
  20. }));
  21. writeNewLine();
  22. }

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

  1. /**
  2. * @see IBytecodeVisitor#_invokedynamic(int, int, IConstantPoolEntry)
  3. */
  4. public void _invokedynamic(
  5. int pc,
  6. int index,
  7. IConstantPoolEntry nameEntry,
  8. IConstantPoolEntry descriptorEntry) {
  9. dumpPcNumber(pc);
  10. this.buffer.append(Messages.bind(Messages.classformat_invokedynamic, new String[] {
  11. OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEDYNAMIC],
  12. Integer.toString(index),
  13. Util.toString(
  14. null,
  15. nameEntry.getUtf8Value(),
  16. descriptorEntry.getUtf8Value(),
  17. true,
  18. isCompact())
  19. }));
  20. writeNewLine();
  21. }
  22. /**

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. /**
  2. * @see IBytecodeVisitor#_invokedynamic(int, int, IConstantPoolEntry)
  3. */
  4. public void _invokedynamic(
  5. int pc,
  6. int index,
  7. IConstantPoolEntry nameEntry,
  8. IConstantPoolEntry descriptorEntry) {
  9. dumpPcNumber(pc);
  10. this.buffer.append(Messages.bind(Messages.classformat_invokedynamic, new String[] {
  11. OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEDYNAMIC],
  12. Integer.toString(index),
  13. Util.toString(
  14. null,
  15. nameEntry.getUtf8Value(),
  16. descriptorEntry.getUtf8Value(),
  17. true,
  18. isCompact())
  19. }));
  20. writeNewLine();
  21. }
  22. /**

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. /**
  2. * @see IBytecodeVisitor#_invokedynamic(int, int, IConstantPoolEntry, IConstantPoolEntry)
  3. */
  4. public void _invokedynamic(
  5. int pc,
  6. int index,
  7. IConstantPoolEntry nameEntry,
  8. IConstantPoolEntry descriptorEntry) {
  9. dumpPcNumber(pc);
  10. this.buffer.append(Messages.bind(Messages.classformat_invokedynamic, new String[] {
  11. OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEDYNAMIC],
  12. Integer.toString(index),
  13. Util.toString(
  14. null,
  15. nameEntry.getUtf8Value(),
  16. descriptorEntry.getUtf8Value(),
  17. true,
  18. isCompact())
  19. }));
  20. writeNewLine();
  21. }
  22. /**

相关文章

Util类方法