Package net.helipilot50.stocktrade.framework

Examples of net.helipilot50.stocktrade.framework.NumericData


    public Array_Of_ListElement<ListElement> getElementList() {
        return kids;
    }

    public ListElement extractListElementByIndex(int index) {
        ListElement le = null;
        if ((kids != null) && (index > 0) && (index <= kids.size())) {
            le = kids.get(index - 1);
        }
        return le;
    }
View Full Code Here


        return le;
    }

    public ListElement extractListElement(int value) {
        for (Iterator<ListElement> it = kids.iterator(); it.hasNext();) {
            ListElement le = it.next();
            if (le.getIntegerValue() == value)
                return le;
        }
        return null;
    }
View Full Code Here

        return ((ListElement) getSelectedValue()).getObjectValue();
    }

    public void setIntegerValue(int value) {
        for (int i = 0; i < this.getRadioListModel().getSize(); i++) {
            ListElement le = ((ListElement)this.getRadioListModel().getElementAt(i));
            if (le.equals(value)){
                this.setSelectedIndex(i);
                break;
            }
        }
    }
View Full Code Here

        }
    }

    public void setObjectValue(Object value) {
        for (int i = 0; i < this.getRadioListModel().getSize(); i++) {
            ListElement le = ((ListElement)this.getRadioListModel().getElementAt(i));
            if (le.getObjectValue() == null)
                continue;
            if (le.getObjectValue().equals(value)){
                this.setSelectedIndex(i);
                break;
            }
        }
    }
View Full Code Here

    public void setTextValue(TextData value) {
        this.setTextValue(value.toString());
    }
    public void setTextValue(String value) {
        for (int i = 0; i < this.getRadioListModel().getSize(); i++) {
            ListElement le = ((ListElement)this.getRadioListModel().getElementAt(i));
            if (le.equals(value)){
                this.setSelectedIndex(i);
                break;
            }
        }
    }
View Full Code Here

            return format(new Double(doubleValue), (NumberFormat) getFormat());
        }
        // TF:12/03/2009:DET-83: We need to be able to handle strings and other data values as well,
        // just in case the model and the mapped type don't match
        else if (value instanceof NumericData) {
          NumericData numericValue = (NumericData) value;
          if (numericValue.isNullable() && numericValue.isNull()) {
              return "N/A";
          }
          return format(numericValue, (NumberFormat) getFormat());
        }
        else if (value instanceof DataValue) {
View Full Code Here

  public Object stringToValue(String text) throws ParseException
    {
      // TF:9/3/08:This class is only used to format numeric data objects, so we know from it's
      // construction that the value class must be a subclass of data value
      Class<? extends DataValue> formatClass = (Class<? extends DataValue>)getValueClass();
        NumericData numericData = (NumericData) FormatterUtils.createDataValueInstance(formatClass);
        if (!FormatterUtils.isNullable(numericData, text))
        {
            // Check if the value is null, then map to 0.  This is what Forte did.  CraigM: 19/02/2008.
            if (text == null || text.length() == 0) {
                setNumericData(numericData, 0);
            }
            else {
                Number number = (Number) getFormat().parseObject(text);
                setNumericData(numericData, number);
            }
        }
        else
        {
            numericData.setIsNull(true);
        }
        return numericData;
    }
View Full Code Here

*/
public class ActivateActionListener implements ActionListener {
    public void actionPerformed(ActionEvent e) {
        List<EventHandle> eventsToPost = new ArrayList<EventHandle>();
        Hashtable<String, Object> qq_Params = new Hashtable<String, Object>();
        qq_Params.put("x", new ParameterHolder(0));
        qq_Params.put("y", new ParameterHolder(0));
        int modifiers = 0;
        if ((e.getModifiers() & ActionEvent.CTRL_MASK) > 0)
            modifiers = modifiers | 1;
        if ((e.getModifiers() & ActionEvent.SHIFT_MASK) > 0)
            modifiers = modifiers | 2;
        if ((e.getModifiers() & ActionEvent.ALT_MASK) > 0)
            modifiers = modifiers | 4;
        if ((e.getModifiers() & ActionEvent.META_MASK) > 0)
            modifiers = modifiers | 8;
        qq_Params.put("modifier", new ParameterHolder(modifiers));
        qq_Params.put("node", new ParameterHolder(null));
        qq_Params.put("row", new ParameterHolder(0));
        qq_Params.put("column", new ParameterHolder(0));
        if (e.getSource() instanceof JRadioButtonMenuItem) {
            ButtonGroup bg = ((DefaultButtonModel) ((JRadioButtonMenuItem) e
                    .getSource()).getModel()).getGroup();
            eventsToPost.add(new EventHandle(bg, "Activate", qq_Params));
        } else {
View Full Code Here

        public void postAfterFocusGain() {
            EventManager.startEventChain();
            int reason = ForteKeyboardFocusManager.getTraversalReason();
            if (reason != Constants.FC_SUPRESS) {
                Hashtable<String, Object> params = createParams();
                params.put("reason", new ParameterHolder(reason));
                ClientEventManager.postEvent( FillInField.this, "AfterFocusGain", params );
            }
            EventManager.endEventChain();
        }
View Full Code Here

            FocusHelper.addSetFocusPurgeAction(FillInField.this);
//                FocusHelper.addPurgeAction(new RollbackAction());
            Hashtable<String, Object> params = createParams();
            int reason = ForteKeyboardFocusManager.getTraversalReason();
            if (reason != Constants.FC_SUPRESS) {
                params.put("reason", new ParameterHolder(reason));
                ClientEventManager.postEvent( FillInField.this, "BeforeFocusLoss", params );
            }
            EventManager.endEventChain();
        }
View Full Code Here

TOP

Related Classes of net.helipilot50.stocktrade.framework.NumericData

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.