Use an exponential backoff strategy for retrying rolled back transactions.
[pithos] / src / gr / ebs / gss / client / dnd / DnDFocusPanel.java
1 /*
2  * Copyright 2008, 2009 Electronic Business Systems Ltd.
3  *
4  * This file is part of GSS.
5  *
6  * GSS is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * GSS is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with GSS.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 package gr.ebs.gss.client.dnd;
20
21 import gr.ebs.gss.client.rest.resource.FileResource;
22
23 import java.util.List;
24
25 import com.google.gwt.user.client.ui.FocusPanel;
26 import com.google.gwt.user.client.ui.HTML;
27 import com.google.gwt.user.client.ui.Widget;
28
29
30 /**
31  * @author kman
32  *
33  */
34 public class DnDFocusPanel extends FocusPanel {
35         private DnDTreeItem item;
36         private List<FileResource> files;
37
38         public DnDFocusPanel(Widget widget, DnDTreeItem anItem) {
39                 super(widget);
40                 item = anItem;
41         }
42
43         public DnDFocusPanel(Widget widget){
44                 super(widget);
45         }
46
47         /**
48          * Retrieve the item.
49          *
50          * @return the item
51          */
52         public DnDTreeItem getItem() {
53                 return item;
54         }
55
56         /**
57          * Retrieve the files.
58          *
59          * @return the files
60          */
61         public List<FileResource> getFiles() {
62                 return files;
63         }
64
65         /**
66          * Modify the files.
67          *
68          * @param newFiles the files to set
69          */
70         public void setFiles(List<FileResource> newFiles) {
71                 files = newFiles;
72         }
73
74         public HTML cloneHTML(){
75                 if(getWidget() instanceof HTML){
76                         HTML ht = (HTML)getWidget();
77                         HTML res = new HTML(ht.getHTML());
78                         return res;
79                 }
80                 return null;
81         }
82 }