/plugin-module-codegen-api/src/main/java/com/atlassian/plugins/codegen/ProjectRewriter.java

https://bitbucket.org/mmeinhold/amps · Java · 10 lines · 5 code · 1 blank · 4 comment · 0 complexity · 02bbb3b921e76699a1c9b068f20bb6b5 MD5 · raw file

  1. package com.atlassian.plugins.codegen;
  2. /**
  3. * Interface for an object that knows how to apply some subset of changes from a
  4. * {@link PluginProjectChangeset} to the project.
  5. */
  6. public interface ProjectRewriter
  7. {
  8. void applyChanges(PluginProjectChangeset changes) throws Exception;
  9. }