Package com.volantis.mcs.imdapi

Examples of com.volantis.mcs.imdapi.AbstractIMDAPIElement


     * IMDAPI: Pop the IMDAPI element from the top of the stack.
     *
     * @return The IMDAPI element from the top of the element stack
     */
    public AbstractIMDAPIElement popIMDAPIElement() {
        AbstractIMDAPIElement e = (AbstractIMDAPIElement)
                imdapiElementStack.pop();

        /*
        if(!(e instanceof expectedElement)) {
          throw new IllegalStateException ("IMDAPIElement STACK:"
View Full Code Here


     * removing it from the stack.
     *
     * @return The IMDAPI element from the top of the element stack
     */
    public AbstractIMDAPIElement getIMDAPIElement() {
        AbstractIMDAPIElement e = (AbstractIMDAPIElement)
                imdapiElementStack.peek();

        /*
        if(!(e instanceof expectedElement)) {
          throw new IllegalStateException ("IMDAPIElement STACK:"
View Full Code Here

TOP

Related Classes of com.volantis.mcs.imdapi.AbstractIMDAPIElement

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.