Package test.coreiframe

Source Code of test.coreiframe.TestCoreIFrameDocument

/*
* TestCoreLoadListener.java
*
* Created on 5 de octubre de 2006, 11:31
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/

package test.coreiframe;

import test.core.*;
import java.io.Serializable;
import org.itsnat.core.ItsNatServletRequest;
import org.itsnat.core.ItsNatServletResponse;
import org.itsnat.core.html.ItsNatHTMLDocument;
import test.shared.Shared;
import test.shared.TestIFrameBoundHTML;
import test.shared.TestSerialization;

/**
*
* @author jmarranz
*/
public class TestCoreIFrameDocument implements Serializable
{
    protected ItsNatHTMLDocument itsNatDoc;

    /**
     * Creates a new instance of TestCoreLoadListener
     */
    public TestCoreIFrameDocument(ItsNatHTMLDocument itsNatDoc,ItsNatServletRequest request, ItsNatServletResponse response)
    {
        this.itsNatDoc = itsNatDoc;

        new TestIFrameInsertion(itsNatDoc);

        new TestIFrameBoundHTML(itsNatDoc);

        Shared.setRemoteControlLink(request,response);

        new TestSerialization(request);
    }

}
TOP

Related Classes of test.coreiframe.TestCoreIFrameDocument

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.