Package com.volantis.mcs.protocols.ticker.response.attributes

Examples of com.volantis.mcs.protocols.ticker.response.attributes.SkipTimeAttributes


public class SkipTimeElement extends TickerResponseElement {

    public SkipTimeElement(XDIMEContextInternal context) {
        super(TickerResponseElements.SKIP_TIME, context);
       
        protocolAttributes = new SkipTimeAttributes();
    }
View Full Code Here


   
    // Javadoc inherited
    protected void initialiseElementSpecificAttributes(
            XDIMEContextInternal context, XDIMEAttributes attributes)
            throws XDIMEException {
        SkipTimeAttributes skipTimeAttributes = (SkipTimeAttributes) protocolAttributes;

        skipTimeAttributes.setFrom(attributes.getValue("", "from"));
        skipTimeAttributes.setTo(attributes.getValue("", "to"));
    }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.protocols.ticker.response.attributes.SkipTimeAttributes

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.