edu.nrao.dss.client.widget.NumCopyPeriodGroupDialog.java Source code

Java tutorial

Introduction

Here is the source code for edu.nrao.dss.client.widget.NumCopyPeriodGroupDialog.java

Source

// Copyright (C) 2011 Associated Universities, Inc. Washington DC, USA.
// 
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
// 
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
// 
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// 
// Correspondence concerning GBT software should be addressed as follows:
//       GBT Operations
//       National Radio Astronomy Observatory
//       P. O. Box 2
//       Green Bank, WV 24944-0002 USA

package edu.nrao.dss.client.widget;

import com.extjs.gxt.ui.client.widget.Dialog;
import com.extjs.gxt.ui.client.widget.form.FormPanel;
import com.extjs.gxt.ui.client.widget.form.NumberField;
import com.extjs.gxt.ui.client.widget.layout.FlowLayout;
import com.google.gwt.i18n.client.NumberFormat;

public class NumCopyPeriodGroupDialog extends Dialog {

    private NumberField numCopies;

    public NumCopyPeriodGroupDialog() {
        initLayout();
    }

    private void initLayout() {

        //setLayout(new FlowLayout());

        FormPanel fp = new FormPanel();
        fp.setHeaderVisible(false);

        numCopies = new NumberField();
        numCopies.setFieldLabel("Copies");
        numCopies.setFormat(NumberFormat.getFormat("#0"));
        numCopies.setValue(1);

        fp.add(numCopies);

        add(fp);
    }

    public int getNumCopies() {
        return numCopies.getValue().intValue();
    }
}