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

com.github.elibracha.compare.ExtensionDiff Maven / Gradle / Ivy

There is a newer version: 2.3.6
Show newest version
package com.github.elibracha.compare;

import com.github.elibracha.model.Change;
import com.github.elibracha.model.Changed;
import com.github.elibracha.model.DiffContext;

public interface ExtensionDiff {

  ExtensionDiff setOpenApiDiff(OpenApiDiff openApiDiff);

  String getName();

  Changed diff(Change extension, DiffContext context);

  default boolean isParentApplicable(
      Change.Type type, Object object, Object extension, DiffContext context) {
    return true;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy