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

react4j.processor.ScheduleRenderDescriptor Maven / Gradle / Ivy

The newest version!
package react4j.processor;

import java.util.Objects;
import javax.annotation.Nonnull;
import javax.lang.model.element.ExecutableElement;

final class ScheduleRenderDescriptor
{
  @Nonnull
  private final ExecutableElement _method;
  private final boolean _skipShouldViewUpdate;

  ScheduleRenderDescriptor( @Nonnull final ExecutableElement method, final boolean skipShouldViewUpdate )
  {
    _method = Objects.requireNonNull( method );
    _skipShouldViewUpdate = skipShouldViewUpdate;
  }

  @Nonnull
  ExecutableElement getMethod()
  {
    return _method;
  }

  boolean skipShouldViewUpdate()
  {
    return _skipShouldViewUpdate;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy