Revision 3928 branches/v05/applications/appCatalogYNomenclatorClient/src/es/gva/cit/gazetteer/ui/showResults/ShowResultsDialog.java

View differences:

ShowResultsDialog.java
74 74
 * 
75 75
 */
76 76
    protected boolean isKeepOldClicked;
77

  
78
    /**
79
     * 
80
     * 
81
     */
82
        protected boolean isMarkedPlaceClicked;
77 83
/**
78 84
 * <p></p>
79 85
 * 
......
91 97
 * @param isGotoClicked 
92 98
 * @param isKeepOldClicked 
93 99
 */
94
    public  ShowResultsDialog(GazetteerClient client, Feature[] features, int recordsByPage, boolean isGotoClicked, boolean isKeepOldClicked) {        
100
    public  ShowResultsDialog(GazetteerClient client, Feature[] features, int recordsByPage, boolean isGotoClicked, boolean isKeepOldClicked,boolean isMarkedPlaceClicked) {        
95 101
        super();
96 102
        this.recordsByPage = recordsByPage;
97 103
        this.isGotoClicked = isGotoClicked;
98 104
        this.isKeepOldClicked = isKeepOldClicked;
105
        this.isMarkedPlaceClicked = isMarkedPlaceClicked;
99 106
        initialize(client,features);
100 107
    } 
101 108

  
......
111 118
        this.setSize(new Dimension(420, 257));
112 119
        this.setTitle("Cliente Gazetteer");
113 120
        ShowResultsDialogPanel panel = new ShowResultsDialogPanel(gazetteerClient,
114
                features, recordsByPage, new WithOutAndamiTranslator(),isGotoClicked,isKeepOldClicked);
121
                features, recordsByPage, new WithOutAndamiTranslator(),isGotoClicked,isKeepOldClicked,isMarkedPlaceClicked);
115 122
        panel.setParent(this);
116 123
        getContentPane().add(panel);
117 124
        this.setVisible(true);

Also available in: Unified diff