CompatibilityLayer.java 382 B

123456789101112
  1. package com.gmail.nossr50.util.compat;
  2. /**
  3. * Compatibility Layers should be named after the functionality they serve
  4. */
  5. public interface CompatibilityLayer {
  6. /**
  7. * Whether or not this CompatibilityLayer successfully initialized and in theory should be functional
  8. * @return true if this CompatibilityLayer is functional
  9. */
  10. boolean noErrorsOnInitialize();
  11. }