Package org.teleal.cling.model.state

Examples of org.teleal.cling.model.state.StateVariableValue


    @Override
    public void endElement(String uri, String localName, String qName) throws SAXException {
      if (getPresetName) {
        getPresetName = false;
        StateVariable stateVariable = new StateVariable(localName, new StateVariableTypeDetails(new StringDatatype()));
        StateVariableValue stateVariableValue = new StateVariableValue(stateVariable, presetName);
        changes.put(qName, stateVariableValue);
      }
    }
View Full Code Here

TOP

Related Classes of org.teleal.cling.model.state.StateVariableValue

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.