Method
propertyChange
(PropertyChangeEvent evt)
Source from the content-addressed store, hash-verified
| 1071 | protected Void doInBackground() throws Exception { |
| 1072 | addPropertyChangeListener(new PropertyChangeListener() { |
| 1073 | public void propertyChange(PropertyChangeEvent evt) { |
| 1074 | if ("progress".equals(evt.getPropertyName())) { |
| 1075 | progressBar.setValue((Integer) evt.getNewValue()); |
| 1076 | } |
| 1077 | } |
| 1078 | }); |
| 1079 | |
| 1080 | long totalSize = 0; |
Callers
nothing calls this directly
Tested by
no test coverage detected