Package javax.swing

Examples of javax.swing.Box


    setTitle(resources.getString("title"));

    panels = new InstallerPanel[panelClasses.length];
    currentPanel = 0;
   
    Box buttonZone = Box.createHorizontalBox();
    buttonZone.add(Box.createHorizontalGlue());
    buttonZone.add(previous);
    buttonZone.add(cancel);
    buttonZone.add(next);
       
    getContentPane().setLayout(new BorderLayout());
    getContentPane().add(getPanel(),BorderLayout.CENTER);
    getContentPane().add(buttonZone,BorderLayout.SOUTH);
View Full Code Here


    public PlotPanel() {
//      setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
      setLayout(new BorderLayout());

      JPanel panel;
      Box section;
     
      Box content = Box.createVerticalBox();
     
      setName(resources.getString("PlotProperties"));

      XYPlot plot = chart.getXYPlot();

      // Create the title section
      section=Box.createHorizontalBox();
      section.add(new JLabel(resources.getString("PlotTitle:")));
      section.add(tfTitle = new JTextField());
      tfTitle.setText(chart.getTitle().getText());
      content.add(section);


      // X axis section
      section = new Box(BoxLayout.Y_AXIS);
      section.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),resources.getString("XAxis")));
     
      panel = new JPanel();
      panel.setLayout(new FlowLayout(FlowLayout.LEFT));
     
      CyclicNumberAxis cna = null;
      if (plot.getDomainAxis() instanceof CyclicNumberAxis) cna = (CyclicNumberAxis)plot.getDomainAxis();
     
      panel.add(cbcyclex = new ActionCheckBox(resources.getString("CyclicAxis"), cna!=null) {
        public void actionPerformed(ActionEvent e) {
          CardLayout cl = (CardLayout)(xcards.getLayout());
          if (isSelected()) cl.show(xcards, "cyclic");
          else cl.show(xcards, "normal");
        }
      });
      panel.add(cbinvertx = new ActionCheckBox(resources.getString("Inverted"), plot.getDomainAxis().isInverted()) {
        public void actionPerformed(ActionEvent e) {
        }
      });
      section.add(panel);
     
      xcards = new JPanel();
      xcards.setLayout(new CardLayout());
     
      Box hbox = Box.createHorizontalBox();
      hbox.add(new JLabel(resources.getString("Period")));
      hbox.add(nfperiodx = new NumberField(cna==null ? 0 : cna.getPeriod()));
      hbox.add(Box.createHorizontalGlue());
      hbox.add(new JLabel(resources.getString("Offset")));
      hbox.add(nfoffsetx = new NumberField(cna==null ? 0 : cna.getOffset()));
      xcards.add(hbox,"cyclic");
     
      panel = new JPanel();
      panel.setLayout(new FlowLayout(FlowLayout.LEFT));
      double autorange = plot.getDomainAxis().getFixedAutoRange();
      panel.add(cbfixedautox = new ActionCheckBox(resources.getString("FixedRange"),autorange!=0) {
        public void actionPerformed(ActionEvent e) {
          nffixedautox.setEnabled(isSelected() && isEnabled());
        }
      });
      panel.add(nffixedautox = new NumberField(autorange,10));
      xcards.add(panel,"normal");

      section.add(xcards);
     
      panel = new JPanel();
      panel.setLayout(new FlowLayout(FlowLayout.LEFT));
      panel.add(cbautox = new ActionCheckBox(resources.getString("Auto-update"), plot.getDomainAxis().isAutoRange()) {
        public void actionPerformed(ActionEvent e) {
          cbfixedautox.setEnabled(isSelected());
          cbfixedautox.apply();
          lpxmin.setEnabled(!isSelected());
          lpxmax.setEnabled(!isSelected());
          tfpxmin.setEnabled(!isSelected());
          tfpxmax.setEnabled(!isSelected());
        }
      });
      panel.add(lpxmin = new JLabel(resources.getString("minLabel")));
      panel.add(tfpxmin = new NumberField(10));
      tfpxmin.setValue(plot.getDomainAxis().getLowerBound());
      panel.add(lpxmax = new JLabel(resources.getString("maxLabel")));
      panel.add(tfpxmax = new NumberField(10));
      tfpxmax.setValue(plot.getDomainAxis().getUpperBound());
      cbautox.apply();
      section.add(panel);
     
      content.add(section);

     
      // Now handle Y axis
      section = new Box(BoxLayout.Y_AXIS);
      section.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),resources.getString("YAxis")));

      panel = new JPanel();
      panel.setLayout(new FlowLayout(FlowLayout.LEFT));
     
      cna = null;
      if (plot.getRangeAxis() instanceof CyclicNumberAxis) cna = (CyclicNumberAxis)plot.getRangeAxis();
     
      panel.add(cbcycley = new ActionCheckBox(resources.getString("CyclicAxis"), cna!=null) {
        public void actionPerformed(ActionEvent e) {
          CardLayout cl = (CardLayout)(ycards.getLayout());
          if (isSelected()) cl.show(ycards, "cyclic");
          else cl.show(ycards, "normal");
        }
      });
      panel.add(cbinverty = new ActionCheckBox(resources.getString("Inverted"), plot.getRangeAxis().isInverted()) {
        public void actionPerformed(ActionEvent e) {
        }
      });
      section.add(panel);
     
      ycards = new JPanel();
      ycards.setLayout(new CardLayout());
     
      hbox = Box.createHorizontalBox();
      hbox.add(new JLabel(resources.getString("Period")));
      hbox.add(nfperiody = new NumberField(cna==null ? 0 : cna.getPeriod()));
      hbox.add(Box.createHorizontalGlue());
      hbox.add(new JLabel(resources.getString("Offset")));
      hbox.add(nfoffsety = new NumberField(cna==null ? 0 : cna.getOffset()));
      ycards.add(hbox,"cyclic");
     
      panel = new JPanel();
      panel.setLayout(new FlowLayout(FlowLayout.LEFT));
      autorange = plot.getRangeAxis().getFixedAutoRange();
      panel.add(cbfixedautoy = new ActionCheckBox(resources.getString("FixedRange"),autorange!=0) {
        public void actionPerformed(ActionEvent e) {
          nffixedautoy.setEnabled(isSelected() && isEnabled());
        }
      });
      panel.add(nffixedautoy = new NumberField(autorange,10));
      ycards.add(panel,"normal");

      section.add(ycards);
     
      panel = new JPanel();
      panel.setLayout(new FlowLayout(FlowLayout.LEFT));
      panel.add(cbautoy = new ActionCheckBox(resources.getString("Auto-update"), plot.getRangeAxis().isAutoRange()) {
        public void actionPerformed(ActionEvent e) {
          cbfixedautoy.setEnabled(isSelected());
          cbfixedautoy.apply();
          lpymin.setEnabled(!isSelected());
          lpymax.setEnabled(!isSelected());
          tfpymin.setEnabled(!isSelected());
          tfpymax.setEnabled(!isSelected());
        }
      });
      panel.add(lpymin = new JLabel(resources.getString("minLabel")));
      panel.add(tfpymin = new NumberField(10));
      tfpymin.setValue(plot.getRangeAxis().getLowerBound());
      panel.add(lpymax = new JLabel(resources.getString("maxLabel")));
      panel.add(tfpymax = new NumberField(10));
      tfpymax.setValue(plot.getRangeAxis().getUpperBound());
      cbautoy.apply();
      section.add(panel);

      Box box = Box.createHorizontalBox();

      box.add(new JLabel(resources.getString("Curves:")));
      box.add(pcbxcurves = new JComboBox());
      box.add(pcurvecolor = new JButton("    "));
      box.add(pcurvedelete = new JButton(resources.getString("Delete")));
      section.add(box);
      content.add(section);

      pcbxcurves.setEditable(true);
      noCurveColor = pcurvecolor.getBackground();
View Full Code Here

            baseColorMapperSource = ShapeNode.this.baseColorMapperSource;
            highlightColorMapperSource = ShapeNode.this.highlightColorMapperSource;
            baseColorMapper = ShapeNode.this.baseColorMapper;
            highlightColorMapper = ShapeNode.this.highlightColorMapper;
           
            Box box = Box.createHorizontalBox();
            box.add(new JLabel(NodeResourcesManager.resources.getString("Name")));
            box.add(Box.createHorizontalGlue());
            box.add(tfName = new JTextField(name));
            if (showName) add(box);
           
            box = Box.createHorizontalBox();
            box.add(new JLabel(NodeResourcesManager.resources.getString("DisplayMode")));
            box.add(Box.createHorizontalGlue());
            box.add(rbShading = new JRadioButton(NodeResourcesManager.resources.getString("Shading"), mode==SHADING_MODE));
            box.add(rbFlat = new JRadioButton(NodeResourcesManager.resources.getString("Flat"), mode==SHADING_MODE));
            box.add(rbFilled = new JRadioButton(NodeResourcesManager.resources.getString("Filled"), mode==FILLED_MODE));
            box.add(rbWireframe = new JRadioButton(NodeResourcesManager.resources.getString("Wireframe"), mode==WIREFRAME_MODE));
            ButtonGroup bg = new ButtonGroup();
            bg.add(rbShading);
            bg.add(rbFlat);
            bg.add(rbFilled);
            bg.add(rbWireframe);
            add(box);

            box = Box.createHorizontalBox();
            box.add(new JLabel(NodeResourcesManager.resources.getString("BaseColor")));
      box.add(Box.createHorizontalGlue());
      box.add(bBaseColor = new JButton("    "));
      noColor = bBaseColor.getBackground();
      bBaseColor.setFocusPainted(false);
      bBaseColor.setBackground(baseColor);
            add(box);

            box = Box.createHorizontalBox();
            box.add(new JLabel(NodeResourcesManager.resources.getString("HighlightColor")));
      box.add(Box.createHorizontalGlue());
            box.add(bHighlightColor = new JButton("    "));
            bHighlightColor.setFocusPainted(false);
      bHighlightColor.setBackground(highlightColor);
            add(box);

            bBaseColor.addActionListener(new ActionListener() {
View Full Code Here

    protected NumberField nfPeriod;
    protected JCheckBox cbAutoStop;

    public PropertiesPanel() {
      setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
      Box box = Box.createHorizontalBox();
      box.add(new JLabel(resources.getString("Period")));
      box.add(Box.createHorizontalGlue());
      box.add(nfPeriod = new NumberField(getPeriod(), 5));
      add(box);
      box = Box.createHorizontalBox();
      box.add(cbAutoStop = new JCheckBox(resources.getString("AutoStopWhenStepFails"),isAutoStop()));
      box.add(Box.createHorizontalGlue());
      add(box);
    }
View Full Code Here

    public PlotPanel() {
     
      setLayout(new BorderLayout());

      JPanel panel;
      Box section;
     
      Box content = Box.createVerticalBox();
     
      setName(resources.getString("PlotProperties"));

      PiePlot plot = (PiePlot)chart.getPlot();
      SourcePieDataset dst = (SourcePieDataset)plot.getDataset();

      // Create the title section
      section=Box.createHorizontalBox();
      section.add(new JLabel(resources.getString("PlotTitle:")));
      section.add(tfTitle = new JTextField());
      tfTitle.setText(chart.getTitle().getText());
      content.add(section);

      section=Box.createVerticalBox();
      section.setBorder(BorderFactory.createTitledBorder(resources.getString("Series")));

      Box box = Box.createHorizontalBox();
      box.add(pcbxcurves = new JComboBox());
      box.add(pcurvecolor = new JButton("    "));
      box.add(pcurvedelete = new JButton(resources.getString("Delete")));
      section.add(box);
     
      box = Box.createHorizontalBox();
      box.add(new JLabel(resources.getString("ExplodedRatio(>=1)")));
      box.add(tfRatio = new NumberField(1.0));
     
      // So long as this does not work for 3D pies, do not show it
      if (!(plot instanceof Pie3DPlot)) section.add(box);
     
      content.add(section);
View Full Code Here

    protected NumberField nfPeriod;
    protected JCheckBox cbAutoStop;

    public PropertiesPanel() {
      setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
      Box box = Box.createHorizontalBox();
      box.add(new JLabel(resources.getString("Period")));
      box.add(Box.createHorizontalGlue());
      box.add(nfPeriod = new NumberField(getPeriod(), 5));
      add(box);
      box = Box.createHorizontalBox();
      box.add(cbAutoStop = new JCheckBox(resources.getString("AutoStopWhenStepFails"),isAutoStop()));
      box.add(Box.createHorizontalGlue());
      add(box);
    }
View Full Code Here

        packSection.add(progress = new JProgressBar(), BorderLayout.SOUTH);
       
    add(packSection,BorderLayout.CENTER);
   
    Box hbox = Box.createHorizontalBox();
    hbox.add(new JLabel(Installer.resources.getString("location")));
   
    location = new File(Installer.resources.getString("defaultLocation"+os));
   
    hbox.add(tfLoc = new JTextField());
    updateLoc();
    Dimension d = tfLoc.getPreferredSize();
    d.width = getWidth();
    tfLoc.setMaximumSize(d);
    hbox.add(btnLoc = new JButton(Installer.resources.getString("chooseLocation")));

    add(hbox,BorderLayout.SOUTH);
   
    btnLoc.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
View Full Code Here

        mapperCopy = (AutomatonActionMapper)mapper.clone();
      } catch (CloneNotSupportedException e) {
        mapperCopy = mapper;
      }

      Box content = Box.createVerticalBox();

      Box topBox = Box.createHorizontalBox();

      JPanel gridPanel = new JPanel(new BorderLayout());
      gridPanel.setBorder(BorderFactory.createTitledBorder(resources.getString("GridArrayParameters")));
      JPanel colpane = new JPanel(new GridLayout(2,2));
      colpane.add(new JLabel(resources.getString("NumberOfColumns")));
      colpane.add(nfNumCellX = new NumberField(cells[0].length,5));
      colpane.add(new JLabel(resources.getString("ActiveColumn")));
      colpane.add(nfActiveX = new NumberField(activeX,5));
      gridPanel.add(colpane,BorderLayout.WEST);

      JPanel rowpane = new JPanel(new GridLayout(2,2));
      rowpane.add(new JLabel(resources.getString("NumberOfRows")));
      rowpane.add(nfNumCellY = new NumberField(cells.length,5));
      rowpane.add(new JLabel(resources.getString("ActiveRow")));
      rowpane.add(nfActiveY = new NumberField(activeY,5));
      gridPanel.add(rowpane,BorderLayout.EAST);
      topBox.add(gridPanel);

      JPanel dimensionsPanel = new JPanel(new BorderLayout());
      dimensionsPanel.setBorder(BorderFactory.createTitledBorder(resources.getString("Dimensions")));
      Box box = Box.createHorizontalBox();
      box.add(cbResize = new JCheckBox(resources.getString("AllowResize"),allowResize));
      box.add(Box.createHorizontalGlue());
      box.add(cbRatio = new JCheckBox(resources.getString("FixedRatio"),fixedRatio));
      dimensionsPanel.add(box,BorderLayout.NORTH);

      box = Box.createHorizontalBox();
      box.add(lwidth = new JLabel(resources.getString("Width")));
      box.add(nfWidth = new NumberField((long)_w));
      nfWidth.setHorizontalAlignment(JTextField.RIGHT);
      box.add(Box.createHorizontalGlue());
      box.add(lheight = new JLabel(resources.getString("Height")));
      box.add(nfHeight = new NumberField((long)_h));
      nfHeight.setHorizontalAlignment(JTextField.RIGHT);
      dimensionsPanel.add(box,BorderLayout.SOUTH);

      topBox.add(dimensionsPanel);

      content.add(topBox);

      box = Box.createHorizontalBox();
      JPanel panel = mapperCopy.createPanel(new JDialog(),null)// TODO refactoring on Automaton shape, do like
      // all other builtin shapes !
      panel.setBorder(BorderFactory.createTitledBorder(resources.getString("ActionMapper")));
      box.add(panel);

      panel = new JPanel(new BorderLayout());
      dstree = SourceTree.getFromPool("PropertiesPanel0");
      JScrollPane dslistScrollPane = new JScrollPane(dstree);
      panel.add(dslistScrollPane);
      panel.setBorder(BorderFactory.createTitledBorder(resources.getString("DataSource")));
      box.add(panel);
      dstree.setSelectedValue(sourceCopy);
      dstree.removeAllTreeSelectionListeners();
      dstree.addTreeSelectionListener(new TreeSelectionListener() {
        public void valueChanged(TreeSelectionEvent e) {
          if (!e.isAddedPath()) return;
View Full Code Here

    JLabel lrangemin, lrangemax, lnrangemin, lnrangemax, lwrangemin, lwrangemax, lcrangemin, lcrangemax;
    JTextField tfTitle;
   
    public BoundsPanel() {
      setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
      Box p1 = new Box(BoxLayout.Y_AXIS);
     
      setName(resources.getString("Properties"));

      JPanel panel;
      Box section;

     
      // Create the title section
      section=Box.createHorizontalBox();
      section.add(new JLabel(resources.getString("PlotTitle:")));
      section.add(tfTitle = new JTextField());
      tfTitle.setText(chart.getTitle().getText());
      p1.add(section);
     
     
      DatasetDelegatedMeterPlot plot = (DatasetDelegatedMeterPlot)chart.getPlot();
      SourceMeterDataset dst = (SourceMeterDataset)plot.getDataset();

      section = new Box(BoxLayout.Y_AXIS);
      section.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),resources.getString("OverallRange")));

      panel = new JPanel();
      panel.setLayout(new FlowLayout(FlowLayout.LEFT));
      panel.add(cbautorange = new ActionCheckBox(resources.getString("Auto-update"), plot.isAutorange()) {
        public void actionPerformed(ActionEvent e) {
          lrangemin.setEnabled(!isSelected());
          lrangemax.setEnabled(!isSelected());
          tfrangemin.setEnabled(!isSelected());
          tfrangemax.setEnabled(!isSelected());
        }
      });
      panel.add(lrangemin = new JLabel(resources.getString("minLabel")));
      panel.add(tfrangemin = new NumberField(10));
      tfrangemin.setValue(plot.getRange().getLowerBound());
      panel.add(lrangemax = new JLabel(resources.getString("maxLabel")));
      panel.add(tfrangemax = new NumberField(10));
      tfrangemax.setValue(plot.getRange().getUpperBound());
      section.add(panel);
      cbautorange.apply();
      p1.add(section);

      section = new Box(BoxLayout.Y_AXIS);
      section.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),resources.getString("'Normal'Range")));
      panel = new JPanel();
      panel.setLayout(new FlowLayout(FlowLayout.LEFT));
      panel.add(cbnrange = new ActionCheckBox(resources.getString("Enable"), plot.getNormalRange()!=null) {
        public void actionPerformed(ActionEvent e) {
          lnrangemin.setEnabled(isSelected());
          lnrangemax.setEnabled(isSelected());
          tfnrangemin.setEnabled(isSelected());
          tfnrangemax.setEnabled(isSelected());
        }
      });
      panel.add(lnrangemin = new JLabel(resources.getString("minLabel")));
      panel.add(tfnrangemin = new NumberField(10));
      if (plot.getNormalRange()!=null) tfnrangemin.setValue(plot.getNormalRange().getLowerBound());
      panel.add(lnrangemax = new JLabel(resources.getString("maxLabel")));
      panel.add(tfnrangemax = new NumberField(10));
      if (plot.getNormalRange()!=null) tfnrangemax.setValue(plot.getNormalRange().getUpperBound());
      section.add(panel);
      cbnrange.apply();
      p1.add(section);

      section = new Box(BoxLayout.Y_AXIS);
      section.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),resources.getString("'Warning'Range")));
      panel = new JPanel();
      panel.setLayout(new FlowLayout(FlowLayout.LEFT));
      panel.add(cbwrange = new ActionCheckBox(resources.getString("Enable"), plot.getWarningRange()!=null) {
        public void actionPerformed(ActionEvent e) {
          lwrangemin.setEnabled(isSelected());
          lwrangemax.setEnabled(isSelected());
          tfwrangemin.setEnabled(isSelected());
          tfwrangemax.setEnabled(isSelected());
        }
      });
      panel.add(lwrangemin = new JLabel(resources.getString("minLabel")));
      panel.add(tfwrangemin = new NumberField(10));
      if (plot.getWarningRange()!=null) tfwrangemin.setValue(plot.getWarningRange().getLowerBound());
      panel.add(lwrangemax = new JLabel(resources.getString("maxLabel")));
      panel.add(tfwrangemax = new NumberField(10));
      if (plot.getWarningRange()!=null) tfwrangemax.setValue(plot.getWarningRange().getUpperBound());
      section.add(panel);
      cbwrange.apply();
      p1.add(section);

      section = new Box(BoxLayout.Y_AXIS);
      section.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),resources.getString("'Critical'Range")));
      panel = new JPanel();
      panel.setLayout(new FlowLayout(FlowLayout.LEFT));
      panel.add(cbcrange = new ActionCheckBox(resources.getString("Enable"), plot.getCriticalRange()!=null) {
        public void actionPerformed(ActionEvent e) {
          lcrangemin.setEnabled(isSelected());
          lcrangemax.setEnabled(isSelected());
          tfcrangemin.setEnabled(isSelected());
          tfcrangemax.setEnabled(isSelected());
        }
      });
      panel.add(lcrangemin = new JLabel(resources.getString("minLabel")));
      panel.add(tfcrangemin = new NumberField(10));
      if (plot.getCriticalRange()!=null) tfcrangemin.setValue(plot.getCriticalRange().getLowerBound());
      panel.add(lcrangemax = new JLabel(resources.getString("maxLabel")));
      panel.add(tfcrangemax = new NumberField(10));
      if (plot.getCriticalRange()!=null) tfcrangemax.setValue(plot.getCriticalRange().getUpperBound());
      section.add(panel);
      cbcrange.apply();
      p1.add(section);

      add(p1);
View Full Code Here

        protected JLabel ldynamic, lsubsample, ldynamicbuffersize;

        protected JComboBox cbxCharset;

        public ASCIIFileOptionComponent() {
            Box box = new Box(BoxLayout.Y_AXIS);
            Box hbox = Box.createHorizontalBox();
            hbox.add(cbsubsample = new ActionCheckBox(resources.getStringValue("asciiOptionSubSampling"), false) {
                public void actionPerformed(ActionEvent e) {
                    nfsubsample.setEnabled(isSelected());
                    lsubsample.setEnabled(isSelected());
                    if (!isSelected()) {
                        nfsubsample.setValue(1);
                    }
                }
            });
            hbox.add(Box.createHorizontalGlue());
            box.add(hbox);
            hbox = Box.createHorizontalBox();
            hbox.add(lsubsample = new JLabel(resources.getStringValue("asciiOptionSubSamplingText")));
            hbox.add(Box.createHorizontalGlue());
            hbox.add(nfsubsample = new NumberField(1, 5));
            box.add(hbox);
            cbsubsample.apply();
            hbox = Box.createHorizontalBox();
            hbox.add(cbdynamic = new ActionCheckBox(resources.getStringValue("asciiOptionDynamic"), false) {
                public void actionPerformed(ActionEvent e) {
                    nfdelay.setEnabled(isSelected());
                    ldynamic.setEnabled(isSelected());
                    nfbuffersize.setEnabled(isSelected());
                    ldynamicbuffersize.setEnabled(isSelected());
                    if (!isSelected()) {
                        nfdelay.setValue(1000);
                    }
                    if (!isSelected()) {
                        nfbuffersize.setValue(100);
                    }
                }
            });
            hbox.add(Box.createHorizontalGlue());
            box.add(hbox);
            hbox = Box.createHorizontalBox();
            hbox.add(ldynamic = new JLabel(resources.getStringValue("asciiOptionDynamicPeriod")));
            hbox.add(Box.createHorizontalGlue());
            hbox.add(nfdelay = new NumberField(1000, 5));
            box.add(hbox);
            hbox = Box.createHorizontalBox();
            hbox.add(ldynamicbuffersize = new JLabel(resources.getStringValue("asciiOptionDynamicBufferSize")));
            hbox.add(Box.createHorizontalGlue());
            hbox.add(nfbuffersize = new NumberField(100, 5));
            box.add(hbox);
            cbdynamic.apply();
            hbox = Box.createHorizontalBox();
            hbox.add(new JLabel(resources.getStringValue("asciiOptionCharset")));
            hbox.add(Box.createHorizontalGlue());
            hbox.add(cbxCharset = new JComboBox());
            cbxCharset.addItem(resources.getStringValue("asciiOptionNoCharset"));
            SortedMap map = Charset.availableCharsets();
            for (Iterator it = map.keySet().iterator(); it.hasNext();) {
                cbxCharset.addItem(it.next());
            }
View Full Code Here

TOP

Related Classes of javax.swing.Box

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.