~yrke/tapaal/removeNetType

« back to all changes in this revision

Viewing changes to src/pipe/gui/widgets/ChooseInclusionPlacesDialog.java

MergedĀ lp:~yrke/tapaal/testbranch-syntaxOnlyChanges

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
import dk.aau.cs.model.tapn.TimedPlace;
43
43
 
44
44
public class ChooseInclusionPlacesDialog extends JPanel {
45
 
        private static final long serialVersionUID = 7543798264643578137L;
46
45
        
47
46
        private JRootPane rootPane;
48
47
        
262
261
                }
263
262
        }
264
263
        
265
 
        private class CheckBoxListItem {
 
264
        private static class CheckBoxListItem {
266
265
                private TimedPlace place;
267
266
                private boolean isSelected;
268
267
                
289
288
        }
290
289
        
291
290
        private class InclusionPlacesCellRenderer extends JPanel implements ListCellRenderer {
292
 
                private static final long serialVersionUID = 1257272566670437973L;
 
291
 
293
292
                private static final String UNCHECK_TO_DEACTIVATE = "Uncheck to exclude place from inclusion check.";
294
293
                private static final String CHECK_TO_ACTIVATE = "Check to make place eligible for inclusion check.";
295
294
                private JCheckBox activeCheckbox = new JCheckBox();