1 19 20 package org.netbeans.modules.j2ee.deployment.plugins.api; 21 22 import java.io.File ; 23 24 29 public interface ModuleChangeDescriptor { 30 33 public boolean descriptorChanged(); 34 35 38 public boolean serverDescriptorChanged(); 39 40 43 public boolean classesChanged(); 44 45 48 public boolean manifestChanged(); 49 50 53 public File [] getChangedFiles(); 54 } 55 | Popular Tags |