1 package com.sslexplorer.vfs.clipboard; 2 3 4 public class DAVResourceClipboardContent implements ClipboardContent { 5 6 private boolean deleteOnPaste = false; 7 private String davPath = null; 8 9 public DAVResourceClipboardContent(String davPath) { 10 this.davPath = davPath; 11 } 12 13 public DAVResourceClipboardContent(String davPath, boolean deleteOnPaste) { 14 this.davPath = davPath; 15 this.deleteOnPaste = deleteOnPaste; 16 } 17 18 public String getDAVPath(){ 19 return this.davPath; 20 } 21 22 public boolean deleteOnPaste() { 23 return this.deleteOnPaste; 24 } 25 26 public String toString() { 27 return davPath; 28 } 29 30 } 31 | Popular Tags |