org.eclipse.jdt.internal.compiler.batch.Main.bind()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(6.8k)|赞(0)|评价(0)|浏览(237)

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

Main.bind介绍

暂无

代码示例

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

  1. /**
  2. *
  3. */
  4. public void compiling() {
  5. printlnOut(this.main.bind("progress.compiling")); //$NON-NLS-1$
  6. }
  7. private void endLoggingExtraProblems() {

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

  1. public void logUnavaibleAPT(String className) {
  2. if ((this.tagBits & Logger.XML) != 0) {
  3. this.parameters.put(Logger.MESSAGE, this.main.bind("configure.unavailableAPT", className)); //$NON-NLS-1$
  4. printTag(Logger.ERROR_TAG, this.parameters, true, true);
  5. }
  6. this.printlnErr(this.main.bind("configure.unavailableAPT", className)); //$NON-NLS-1$
  7. }

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

  1. /**
  2. * @param i
  3. * the current repetition number
  4. * @param repetitions
  5. * the given number of repetitions
  6. */
  7. public void logRepetition(int i, int repetitions) {
  8. printlnOut(this.main.bind("compile.repetition", //$NON-NLS-1$
  9. String.valueOf(i + 1), String.valueOf(repetitions)));
  10. }
  11. /**

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

  1. /**
  2. *
  3. */
  4. public void compiling() {
  5. printlnOut(this.main.bind("progress.compiling")); //$NON-NLS-1$
  6. }
  7. private void endLoggingExtraProblems() {

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

  1. /**
  2. * @param i
  3. * the current repetition number
  4. * @param repetitions
  5. * the given number of repetitions
  6. */
  7. public void logRepetition(int i, int repetitions) {
  8. printlnOut(this.main.bind("compile.repetition", //$NON-NLS-1$
  9. String.valueOf(i + 1), String.valueOf(repetitions)));
  10. }
  11. /**

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

  1. public void logIncorrectVMVersionForAnnotationProcessing() {
  2. if ((this.tagBits & Logger.XML) != 0) {
  3. this.parameters.put(Logger.MESSAGE, this.main.bind("configure.incorrectVMVersionforAPT")); //$NON-NLS-1$
  4. printTag(Logger.ERROR_TAG, this.parameters, true, true);
  5. }
  6. this.printlnErr(this.main.bind("configure.incorrectVMVersionforAPT")); //$NON-NLS-1$
  7. }

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

  1. /**
  2. * @param i
  3. * the current repetition number
  4. * @param repetitions
  5. * the given number of repetitions
  6. */
  7. public void logRepetition(int i, int repetitions) {
  8. printlnOut(this.main.bind("compile.repetition", //$NON-NLS-1$
  9. String.valueOf(i + 1), String.valueOf(repetitions)));
  10. }
  11. /**

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

  1. /**
  2. * @param i
  3. * the current repetition number
  4. * @param repetitions
  5. * the given number of repetitions
  6. */
  7. public void logRepetition(int i, int repetitions) {
  8. printlnOut(this.main.bind("compile.repetition", //$NON-NLS-1$
  9. String.valueOf(i + 1), String.valueOf(repetitions)));
  10. }
  11. /**

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

  1. /**
  2. * Print the usage of wrong JDK
  3. */
  4. public void logWrongJDK() {
  5. if ((this.tagBits & Logger.XML) != 0) {
  6. this.parameters.put(Logger.MESSAGE, this.main.bind("configure.requiresJDK1.2orAbove")); //$NON-NLS-1$
  7. printTag(Logger.ERROR, this.parameters, true, true);
  8. }
  9. this.printlnErr(this.main.bind("configure.requiresJDK1.2orAbove")); //$NON-NLS-1$
  10. }

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

  1. /**
  2. *
  3. */
  4. public void compiling() {
  5. printlnOut(this.main.bind("progress.compiling")); //$NON-NLS-1$
  6. }
  7. private void endLoggingExtraProblems() {

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

  1. /**
  2. * @param i
  3. * the current repetition number
  4. * @param repetitions
  5. * the given number of repetitions
  6. */
  7. public void logRepetition(int i, int repetitions) {
  8. printlnOut(this.main.bind("compile.repetition", //$NON-NLS-1$
  9. String.valueOf(i + 1), String.valueOf(repetitions)));
  10. }
  11. /**

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

  1. public void logIncorrectVMVersionForAnnotationProcessing() {
  2. if ((this.tagBits & Logger.XML) != 0) {
  3. this.parameters.put(Logger.MESSAGE, this.main.bind("configure.incorrectVMVersionforAPT")); //$NON-NLS-1$
  4. printTag(Logger.ERROR_TAG, this.parameters, true, true);
  5. }
  6. this.printlnErr(this.main.bind("configure.incorrectVMVersionforAPT")); //$NON-NLS-1$
  7. }

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

  1. public void logIncorrectVMVersionForAnnotationProcessing() {
  2. if ((this.tagBits & Logger.XML) != 0) {
  3. this.parameters.put(Logger.MESSAGE, this.main.bind("configure.incorrectVMVersionforAPT")); //$NON-NLS-1$
  4. printTag(Logger.ERROR_TAG, this.parameters, true, true);
  5. }
  6. this.printlnErr(this.main.bind("configure.incorrectVMVersionforAPT")); //$NON-NLS-1$
  7. }

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

  1. /**
  2. * Print the usage of wrong JDK
  3. */
  4. public void logWrongJDK() {
  5. if ((this.tagBits & Logger.XML) != 0) {
  6. this.parameters.put(Logger.MESSAGE, this.main.bind("configure.requiresJDK1.2orAbove")); //$NON-NLS-1$
  7. printTag(Logger.ERROR, this.parameters, true, true);
  8. }
  9. this.printlnErr(this.main.bind("configure.requiresJDK1.2orAbove")); //$NON-NLS-1$
  10. }

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

  1. /**
  2. *
  3. */
  4. public void compiling() {
  5. printlnOut(this.main.bind("progress.compiling")); //$NON-NLS-1$
  6. }
  7. private void endLoggingExtraProblems() {

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

  1. public void logIncorrectVMVersionForAnnotationProcessing() {
  2. if ((this.tagBits & Logger.XML) != 0) {
  3. this.parameters.put(Logger.MESSAGE, this.main.bind("configure.incorrectVMVersionforAPT")); //$NON-NLS-1$
  4. printTag(Logger.ERROR_TAG, this.parameters, true, true);
  5. }
  6. this.printlnErr(this.main.bind("configure.incorrectVMVersionforAPT")); //$NON-NLS-1$
  7. }

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

  1. /**
  2. * @param i
  3. * the current repetition number
  4. * @param repetitions
  5. * the given number of repetitions
  6. */
  7. public void logRepetition(int i, int repetitions) {
  8. printlnOut(this.main.bind("compile.repetition", //$NON-NLS-1$
  9. String.valueOf(i + 1), String.valueOf(repetitions)));
  10. }
  11. /**

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

  1. /**
  2. *
  3. */
  4. public void compiling() {
  5. printlnOut(this.main.bind("progress.compiling")); //$NON-NLS-1$
  6. }
  7. private void endLoggingExtraProblems() {

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

  1. public void logIncorrectVMVersionForAnnotationProcessing() {
  2. if ((this.tagBits & Logger.XML) != 0) {
  3. this.parameters.put(Logger.MESSAGE, this.main.bind("configure.incorrectVMVersionforAPT")); //$NON-NLS-1$
  4. printTag(Logger.ERROR_TAG, this.parameters, true, true);
  5. }
  6. this.printlnErr(this.main.bind("configure.incorrectVMVersionforAPT")); //$NON-NLS-1$
  7. }

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

  1. /**
  2. * Print the usage of wrong JDK
  3. */
  4. public void logWrongJDK() {
  5. if ((this.tagBits & Logger.XML) != 0) {
  6. this.parameters.put(Logger.MESSAGE, this.main.bind("configure.requiresJDK1.2orAbove")); //$NON-NLS-1$
  7. printTag(Logger.ERROR, this.parameters, true, true);
  8. }
  9. this.printlnErr(this.main.bind("configure.requiresJDK1.2orAbove")); //$NON-NLS-1$
  10. }

相关文章