Package net.percederberg.mibble.type

Examples of net.percederberg.mibble.type.NullType


     * @param node           the node being exited
     *
     * @return the node to add to the parse tree
     */
    protected Node exitNullType(Production node) {
        node.addValue(new NullType());
        return node;
    }
View Full Code Here


     */
    protected Node exitSetType(Production node) {
        // TODO: implement set type support
        log.addError(getLocation(node),
                     "SET type currently unsupported");
        node.addValue(new NullType());
        return node;
    }
View Full Code Here

     */
    protected Node exitSetOfType(Production node) {
        // TODO: implement set of type support
        log.addError(getLocation(node),
                     "SET OF type currently unsupported");
        node.addValue(new NullType());
        return node;
    }
View Full Code Here

     */
    protected Node exitEnumeratedType(Production node) {
        // TODO: implement enumerated type support
        log.addError(getLocation(node),
                     "ENUMERATED type currently unsupported");
        node.addValue(new NullType());
        return node;
    }
View Full Code Here

     */
    protected Node exitSelectionType(Production node) {
        // TODO: implement selection type support
        log.addError(getLocation(node),
                     "selection type currently unsupported");
        node.addValue(new NullType());
        return node;
    }
View Full Code Here

     */
    protected Node exitAnyType(Production node) {
        // TODO: implement any type support
        log.addError(getLocation(node),
                     "ANY type currently unsupported");
        node.addValue(new NullType());
        return node;
    }
View Full Code Here

TOP

Related Classes of net.percederberg.mibble.type.NullType

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.