Exemplo n.º 1
0
    private void  fromJSONStockExchangeSymbol(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        StockAttributeValueJSON convert_classy = StockAttributeValueJSON.from_json(json_value, ignore_extras, true);

        setStockExchangeSymbol(convert_classy);
    }
Exemplo n.º 2
0
    private void  fromJSONCountryName(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        StockAttributeValueJSON convert_classy = StockAttributeValueJSON.from_json(json_value, ignore_extras, true);

        setCountryName(convert_classy);
    }
Exemplo n.º 3
0
    private void  fromJSONRequestedStockExchangeLongName(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        StockAttributeValueJSON convert_classy = StockAttributeValueJSON.from_json(json_value, ignore_extras, true);

        setRequestedStockExchangeLongName(convert_classy);
    }