Package net.helipilot50.stocktrade.server

Examples of net.helipilot50.stocktrade.server.DBClient


        return 0;
    }
    public TextData getSQLState(){
        Throwable t = this.getCause();
        if ((t != null) && (t instanceof SQLException)) {
            return new TextData(((SQLException)t).getSQLState());
        }
        return new TextData();

    }
View Full Code Here


        this.visibleColumns = visibleColumns;
    }
   
    //PM:14/3/08 properties for binding the edited value
    public void setEditedValue(String value){
      setTextValue(new TextData(value));
    }
View Full Code Here

        tb.setTitle(cap);
    }

    public TextData getCaption() {
        TitledBorder tb = (TitledBorder) getBorder();
        return new TextData(tb.getTitle());
    }
View Full Code Here

            }
        }
    }
    //PM:14/3/08 properties for binding the text value
    public void setText(String value){
      this.setTextValue(new TextData(value));
    }
View Full Code Here

        // AD:20/11/2008: Allow for CachedRowSet to be updated if the DBDataSet has already been populated.
        if (resultSet instanceof CachedRowSet) {
          CachedRowSet cachedRowSet = (CachedRowSet) resultSet;
          try {
            if (pValue instanceof TextData) {
              TextData textValue = (TextData) pValue;
              cachedRowSet.updateString(pColOrdinal, textValue.toString());
            } else if (pValue instanceof IntegerData) {
              IntegerData integerValue = (IntegerData) pValue;
              cachedRowSet.updateInt(pColOrdinal, integerValue.getIntegerValue());
            } else if (pValue instanceof DoubleData) {
              DoubleData doubleValue = (DoubleData) pValue;
View Full Code Here

       
//        int systemCID = getLastCID();

        this.nameInst = new ConfigValueInst();
        this.nameInst.getName().setValue("Name");
        this.nameInst.updateData(new TextData(this.getClass().getSimpleName()));
        this.nameInst.setIsReadOnly(true);
        this.nameInst.setInstrumentID(systemID + 1);
        this.addInstrument(this.nameInst);
        //PM:19/2/08 removed the set name
//        this.setName(this.getClass().getSimpleName());
View Full Code Here

    public TextData getName() {
        return this.name;
    }
    //PM:18/07/2008: AXA
    public void setNameAsString(String pValue) {
        this.setName(new TextData(pValue));
    }
View Full Code Here

     * @return Array_Of_TextData
     */
    public Array_Of_TextData<TextData> listInstruments(){
        Array_Of_TextData<TextData> instruments = new Array_Of_TextData<TextData>();
        for (Instrument tmpInstrument : this.instruments) {
            instruments.add(new TextData(tmpInstrument.getName()));
        }
        return instruments;
    }
View Full Code Here

            }
            if (attribute.getValue() instanceof java.lang.Double) {
                theAttribute = new DoubleData((Double)attribute.getValue());
            }
            if (attribute.getValue() instanceof java.lang.String) {
                theAttribute = new TextData((String)attribute.getValue());
            }
            ((ConfigValueInst)instrument).updateData(theAttribute);
        }
        if (instrument instanceof CounterInst) {
            ((CounterInst)instrument).setIntegerValue((Integer)attribute.getValue());
View Full Code Here

     * @return The width of the title, or 0 if there is no title.
     */
    public int getTitleWidth(GridField parentGrid) {
        if (cachedTitleWidth < 0) {
            int captionWidth = 0;
            TextData tdCaption = parentGrid.getCaption();
            String caption = (tdCaption == null) ? "": tdCaption.toString();
            if ("".equals(caption)) {
                captionWidth = 0;
            }
            else {
                Font font = null;
View Full Code Here

TOP

Related Classes of net.helipilot50.stocktrade.server.DBClient

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.