JClass DesktopViews 6.3.0 API
Documentation

com.klg.jclass.page
Interface JCFlowListener


public interface JCFlowListener

Listens to events during the flow of a document.

The general order of calls is:
pageBegin() -- a new page has been created, but the frames have not been created and flow has not yet begun.
frameBegin() -- a new frame has been created. Text will be flowed to the frame following this call.
frameEnd() -- flow is being transferred to another frame.
frameComplete() -- flow is complete in this frame. All macros in the frame have been evaluated.
pageEnd() -- flow is being transferred to another page.
pageComplete() -- flow is complete for this page. All macros in the page have been evaluated.


Method Summary
 void frameBegin(com.klg.jclass.page.JCFlowEvent event)
          Invoked before the flow to a frame begins.
 void frameComplete(com.klg.jclass.page.JCFlowEvent event)
          Invoked when the flow to a frame is complete.
 void frameEnd(com.klg.jclass.page.JCFlowEvent event)
          Invoked when the flow is transfered to another frame.
 void pageBegin(com.klg.jclass.page.JCFlowEvent event)
          Invoked before the flow to a page begins.
 void pageComplete(com.klg.jclass.page.JCFlowEvent event)
          Invoked when the flow to a page is complete.
 void pageEnd(com.klg.jclass.page.JCFlowEvent event)
          Invoked when the flow is transferred to another page.
 

Method Detail

frameBegin

public void frameBegin(com.klg.jclass.page.JCFlowEvent event)
Invoked before the flow to a frame begins.

Parameters:
event -

frameEnd

public void frameEnd(com.klg.jclass.page.JCFlowEvent event)
Invoked when the flow is transfered to another frame.

Parameters:
event -

frameComplete

public void frameComplete(com.klg.jclass.page.JCFlowEvent event)
Invoked when the flow to a frame is complete.

Parameters:
event -

pageBegin

public void pageBegin(com.klg.jclass.page.JCFlowEvent event)
Invoked before the flow to a page begins.

Parameters:
event -

pageEnd

public void pageEnd(com.klg.jclass.page.JCFlowEvent event)
Invoked when the flow is transferred to another page.

Parameters:
event -

pageComplete

public void pageComplete(com.klg.jclass.page.JCFlowEvent event)
Invoked when the flow to a page is complete.

Parameters:
event -

Copyright © 2004 Quest Software Inc..
All rights reserved.