KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > vfs > clipboard > DAVResourceClipboardContent


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