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

org.hotrod.generator.GeneratableObject Maven / Gradle / Ivy

The newest version!
package org.hotrod.generator;

import org.hotrod.generator.mybatisspring.Bundle;

public abstract class GeneratableObject {

  private boolean generated = false;

  private Bundle bundle;

  public void markGenerated() {
    this.generated = true;
  }

  public boolean isGenerated() {
    return this.generated;
  }

  public final void setBundle(final Bundle bundle) {
    this.bundle = bundle;
  }

  public final Bundle getBundle() {
    return this.bundle;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy