~tapaal-contributor/tapaal/autodetect-lens-check2

« back to all changes in this revision

Viewing changes to src/pipe/gui/undo/AddArcPathPointEdit.java

merged in lp:~yrke/tapaal/evenMore-gui-cleanup doing GUI cleanup and fixing memory access check, about menu in Mac, exception in verification and reenabled quick draw

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 */
17
17
public class AddArcPathPointEdit extends Command {
18
18
 
19
 
        ArcPath arcPath;
20
 
        ArcPathPoint point;
 
19
        final ArcPath arcPath;
 
20
        final ArcPathPoint point;
21
21
        private final DataLayer guiModel;
22
 
        Integer index;
 
22
        final Integer index;
23
23
 
24
24
        /** Creates a new instance of AddArcPathPointEdit */
25
25
        public AddArcPathPointEdit(Arc _arc, ArcPathPoint _point, DataLayer guiModel) {