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

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

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

Main.<init>介绍

暂无

代码示例

代码示例来源:origin: stackoverflow.com

@Configuration
class AppConfig {

  @Bean
  Main mainRunner() {
    new Main()
  }
}

代码示例来源:origin: stackoverflow.com

public static void main(String... args) {
  Main main = new Main();

  main.testMethod(1);
}

public void testMethod(int i) {
  testMethod(i);

  System.out.println(i);
}

代码示例来源:origin: stackoverflow.com

function Main() {

  this.method = function() {
   this.method.parameter = 'something_relevant'; // Set property on function object representing method().
  };
}

var p = new Main();
p.method();
console.log(p.method.parameter); // Read property from the function object.

代码示例来源:origin: stackoverflow.com

public static Main getInstance() {
  if (instance == null)
    instance = new Main();
  return instance;
}

代码示例来源:origin: stackoverflow.com

SwingUtilities.invokeLater(new Runnable() {
  public void run() {
    new Main();
  }
});

代码示例来源:origin: stackoverflow.com

public static void main(String[] args) {
  Main m = new Main();
  Thread t1 = new Thread(m.new SomeThread("t1"));
  Thread t2 = new Thread(m.new SomeThread("t2"));
  Thread t3 = new Thread(m.new SomeThread("t3"));
  t1.start();
  t2.start();
  t3.start();
}

代码示例来源:origin: org.eclipse.xtext/org.eclipse.xtext.xbase.testing

protected Main getMain() {
  return new Main(new PrintWriter(new OutputStreamWriter(
      System.out)), new PrintWriter(new OutputStreamWriter(
      errorStream)), false /* systemExit */, null /* options */, null);
}

代码示例来源:origin: stackoverflow.com

final Main x = new Main();
something(new Whatever() {
  public void meh(Integer ignored) {
    x.meh();
  }
}

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

@Override
  public int run(InputStream in, OutputStream out, OutputStream err, String... arguments) {
    boolean succeed = new Main(
        new PrintWriter(new OutputStreamWriter(out != null ? out : System.out)),
        new PrintWriter(new OutputStreamWriter(err != null ? err : System.err)),
        true/* systemExit */,
        null/* options */,
        null/* progress */).compile(arguments);
    return succeed ? 0 : -1;
  }
}

代码示例来源:origin: stackoverflow.com

public static void main(String[] args){
  Main main = new Main();    
  main.login();
}

private void login() { //remove static from instance methods

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

/**
 * @deprecated - use {@link BatchCompiler#compile(String, PrintWriter, PrintWriter, CompilationProgress)} instead
 *                           e.g. BatchCompiler.compile(commandLine, new PrintWriter(System.out), new PrintWriter(System.err), null);
 */
public static boolean compile(String commandLine) {
  return new Main(new PrintWriter(System.out), new PrintWriter(System.err), false /* systemExit */, null /* options */, null /* progress */).compile(tokenize(commandLine));
}

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

/**
 * @deprecated - use {@link BatchCompiler#compile(String, PrintWriter, PrintWriter, CompilationProgress)} instead
 *                           e.g. BatchCompiler.compile(commandLine, new PrintWriter(System.out), new PrintWriter(System.err), null);
 */
public static boolean compile(String commandLine) {
  return new Main(new PrintWriter(System.out), new PrintWriter(System.err), false /* systemExit */, null /* options */, null /* progress */).compile(tokenize(commandLine));
}

代码示例来源:origin: stackoverflow.com

public static void main(String[] args) {
  Main bin = new Main();
  int[] a = { 2, 8,12,14,16,19,24,28,31,33,// 0-9
        39,40,45,49,51,53,54,56,57,60,// 10-19
        63,69,77,82,88,89,94,96,97};  // 20-28
  Scanner userinput = new Scanner(System.in);
  System.out.println("Enter number to search");
  int n = userinput.nextInt();
  System.out.println("Number index: "+bin.Main(a, n));
}

代码示例来源:origin: stackoverflow.com

public static void main(String[] args){
  Main main = new Main();
  main.init();
  main.run();
}

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

/**
 * @deprecated - use {@link BatchCompiler#compile(String, PrintWriter, PrintWriter, CompilationProgress)} instead
 *                       e.g. BatchCompiler.compile(commandLine, outWriter, errWriter, null);
 */
public static boolean compile(String commandLine, PrintWriter outWriter, PrintWriter errWriter) {
  return new Main(outWriter, errWriter, false /* systemExit */, null /* options */, null /* progress */).compile(tokenize(commandLine));
}

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

/**
 * @deprecated - use {@link BatchCompiler#compile(String, PrintWriter, PrintWriter, CompilationProgress)} instead
 *                       e.g. BatchCompiler.compile(commandLine, outWriter, errWriter, null);
 */
public static boolean compile(String commandLine, PrintWriter outWriter, PrintWriter errWriter) {
  return new Main(outWriter, errWriter, false /* systemExit */, null /* options */, null /* progress */).compile(tokenize(commandLine));
}

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

/**
 * @deprecated - use {@link BatchCompiler#compile(String, PrintWriter, PrintWriter, CompilationProgress)} instead
 *                       e.g. BatchCompiler.compile(commandLine, outWriter, errWriter, null);
 */
public static boolean compile(String commandLine, PrintWriter outWriter, PrintWriter errWriter) {
  return new Main(outWriter, errWriter, false /* systemExit */, null /* options */, null /* progress */).compile(tokenize(commandLine));
}

代码示例来源:origin: stackoverflow.com

public static void main(String[] args) {
  SwingUtilities.invokeLater(new Runnable() {         
    public void run() {
      Main frame = new Main();
      frame.Skeleton();
    }
  });
}

代码示例来源:origin: stackoverflow.com

final Main f22 = new Main();
initializer();
f22.getfile(FileName, 0);
f22.addPropertyChangeListener(new PropertyChangeListener() {
  @Override
  public void propertyChange(PropertyChangeEvent pcEvt) {
   if (pcEvt.getNewValue().equals(SwingWorker.StateValue.DONE)) {
     // do your stuff here
   }
  }
});
f22.execute();

代码示例来源:origin: stackoverflow.com

MessageHandler handler = new MessageHandler(true);
   new Main().run(args, handler)
   def log = project.logger
   for (IMessage message : handler.getMessages(null, true)) {
     switch (message.getKind()) {
       case IMessage.ABORT:
       case IMessage.ERROR:
       case IMessage.FAIL:
         log.error message.message, message.thrown

相关文章