Package Inherited

Source Code of Inherited.ORCADisplayNode

package Inherited;

import DisplayProject.DisplayNode;
import DisplayProject.binding.beans.Observable;
import Framework.RuntimeProperties;
import Framework.TextData;
import java.io.Serializable;

/**
* ORCADisplayNode<p>
* <p>
* @author Generated from Forte
* @since  19-Nov-2008
*/
@RuntimeProperties(isDistributed=false, isAnchored=false, isShared=false, isTransactional=false)
@SuppressWarnings("serial")
public class ORCADisplayNode
        extends DisplayNode
        implements Serializable, Observable
{

    // ------------
    // Constructors
    // ------------
    public ORCADisplayNode() {
        // Explicitly call the superclass constructor to prevent the implicit call
        super();

    }

    // -------
    // Methods
    // -------
    /**
     * sizeOf<p>
     * <p>
     * @return int
     */
    public int sizeOf() {
        return 0;
    }

    /**
     * streamOut<p>
     * <p>
     * @param iIndentLevel Type: int
     * @return TextData
     */
    public TextData streamOut(int iIndentLevel) {
        TextData result = new TextData("");

        return result;
    }
// end class ORCADisplayNode
// c Pass 2 Conversion Time: 31 milliseconds
TOP

Related Classes of Inherited.ORCADisplayNode

TOP
Copyright © 2018 www.massapi.com. 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.