1 29 30 package com.caucho.make; 31 32 import com.caucho.vfs.PersistentDependency; 33 34 37 public class AlwaysModified implements PersistentDependency { 38 private static AlwaysModified ALWAYS_MODIFIED = new AlwaysModified(); 39 40 private AlwaysModified() 41 { 42 } 43 44 public static AlwaysModified create() 45 { 46 return ALWAYS_MODIFIED; 47 } 48 49 52 public boolean isModified() 53 { 54 return true; 55 } 56 57 public String getJavaCreateString() 58 { 59 return "com.caucho.make.AlwaysModified.create()"; 60 } 61 62 public String toString() 63 { 64 return "AlwaysModified[]"; 65 } 66 } 67 | Popular Tags |