1 2 24 package org.enhydra.tool.archive; 25 26 public class ServicePlan extends JarPlan { 28 29 private boolean createClient = true; 31 32 public ServicePlan() { 33 super(); 34 Descriptor[] initDD = new Descriptor[1]; 35 36 initDD[0] = new Descriptor(true, Descriptor.ENHYDRA_SERVICE); 37 setDescriptors(initDD); 38 } 39 40 41 public boolean equals(Object comp) { 42 boolean equal = false; 43 44 if (comp instanceof ServicePlan) { 45 equal = super.equals(comp); 46 } 47 return equal; 48 } 49 50 } 51 | Popular Tags |