Ejemplo n.º 1
0
    /** Returns the string to recreate the Dependency. */
    @Override
    public String getJavaCreateString() {
      String sourcePath = _depend.getPath().getPath();
      long digest = _depend.getDigest();

      return ("new com.caucho.v5.vfs.Jar.createDepend("
          + "com.caucho.v5.vfs.Vfs.lookup(\""
          + sourcePath
          + "\"), "
          + digest
          + "L)");
    }
Ejemplo n.º 2
0
    /** Returns the string to recreate the Dependency. */
    public String getJavaCreateString() {
      String sourcePath = _depend.getPath().getPath();
      long digest = _depend.getDigest();

      return ("new "
          + Jar.class.getName()
          + "Jar.createDepend("
          + VfsOld.class.getName()
          + ".lookup(\""
          + sourcePath
          + "\"), "
          + digest
          + "L)");
    }
Ejemplo n.º 3
0
 public String toString() {
   return "Jar$JarDepend[" + _depend.getPath() + "]";
 }