1 11 package org.eclipse.jdt.apt.core.internal.generatedfile; 12 13 import org.eclipse.core.resources.IFile; 14 15 22 public class FileGenerationResult { 23 24 private final IFile file; 25 private final boolean modified; 26 27 public FileGenerationResult(final IFile file, final boolean modified) { 28 this.file = file; 29 this.modified = modified; 30 } 31 32 public IFile getFile() { 33 return file; 34 } 35 36 public boolean isModified() { 37 return modified; 38 } 39 } 40 | Popular Tags |