All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.f2prateek.dart.common.BaseGenerator Maven / Gradle / Ivy

The newest version!
package com.f2prateek.dart.common;

/**
 * Base class of code generators.
 * They generate java code.
 */
public abstract class BaseGenerator {

  /**
   * Create all Java code
   * @return the javacode as string.
   */
  public abstract String brewJava();

  /**
   * @return the Fully Qualified Class Name of the generated code.
   */
  public abstract String getFqcn();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy