/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
- package com.atlassian.plugins.codegen;
- /**
- * Interface for an object that knows how to apply some subset of changes from a
- * {@link PluginProjectChangeset} to the project.
- */
- public interface ProjectRewriter
- {
- void applyChanges(PluginProjectChangeset changes) throws Exception;
- }