Uses of Class
com.instantbank.component.lettertemplate.util.LetterComponent

Packages that use LetterComponent
com.instantbank.component.lettertemplate.ejb This is the LetterTemplate EJB with services for Letters subsystem. 
com.instantbank.component.lettertemplate.util These are auxiliary classes used by the LetterTemplate EJB. 
com.instantbank.lettertemplate.editor.applet This is the applet of the editor. 
com.instantbank.lettertemplate.editor.web Here is the intermediate servlet between the applet and the ejbs. 
 

Uses of LetterComponent in com.instantbank.component.lettertemplate.ejb
 

Methods in com.instantbank.component.lettertemplate.ejb that return LetterComponent
 LetterComponent LetterTemplateEJB.loadComponent(long code)
          Loads a letters component of the current company, corresponding to a code.
 LetterComponent LetterTemplate.loadComponent(long code)
          Loads a letters component of the current company, corresponding to a code.
 LetterComponent LetterTemplateDAO.loadComponent(long componentCode)
          Loads a letters component of the current company, corresponding to a code, from tables DatabaseNames.LETT_COMPONENT, LETT_IMAGE, LETT_VARIABLE
private  LetterComponent LetterTemplateDAO.auxLoadComponent(long componentCode, java.sql.PreparedStatement ps, java.sql.ResultSet rs)
          Auxiliary for loadComponent: loads a letter component from tables DatabaseNames.LETT_COMPONENT, LETT_VARIABLE, LETT_IMAGE
 

Methods in com.instantbank.component.lettertemplate.ejb with parameters of type LetterComponent
 CodeDescription LetterTemplateEJB.storeComponent(LetterComponent component)
          Stores a letters component for the current company, generating code for the component if it is new.
 CodeDescription LetterTemplateEJB.storeComponentAs(long templateCode, LetterComponent component)
          Store as a letters component for the current company, generating code for the component if it is new.
 CodeDescription LetterTemplate.storeComponent(LetterComponent component)
          Stores a letters component for the current company, generating code for the component if it is new.
 CodeDescription LetterTemplate.storeComponentAs(long templateCode, LetterComponent component)
          Store as a letters component for the current company, generating code for the component if it is new.
 CodeDescription LetterTemplateDAO.storeComponent(LetterComponent component)
          Stores a letters component for the current company, in tables DatabaseNames.LETT_COMPONENT, LETT_IMAGE, LETT_VARIABLE Generates code for the component if it is new.
 CodeDescription LetterTemplateDAO.storeComponentAs(long templateCode, LetterComponent component)
          Store as a letters component for the current company in tables DatabaseNames.LETT_COMPONENT, LETT_IMAGE, LETT_VARIABLE generating code for the component if it is new.
private  CodeDescription LetterTemplateDAO.auxStoreComponent(LetterComponent component, java.sql.PreparedStatement ps, java.sql.ResultSet rs)
          Auxiliary for storeComponent: stores a letter component in tables DatabaseNames.LETT_COMPONENT, LETT_VARIABLE, LETT_IMAGE
 

Uses of LetterComponent in com.instantbank.component.lettertemplate.util
 

Fields in com.instantbank.component.lettertemplate.util declared as LetterComponent
private  LetterComponent Template.header
          The header component.
private  LetterComponent Template.body
          The body component.
private  LetterComponent Template.closing
          The closing component.
 

Methods in com.instantbank.component.lettertemplate.util that return LetterComponent
 LetterComponent Template.getHeader()
          Getter method for Template.header
 LetterComponent Template.getBody()
          Getter method for Template.body
 LetterComponent Template.getClosing()
          Getter method for Template.closing
 LetterComponent Template.getComponent(int compType)
          Gets a component of the template from its type.
 

Methods in com.instantbank.component.lettertemplate.util with parameters of type LetterComponent
 void Template.setHeader(LetterComponent cmp)
          Setter method for Template.header
 void Template.setBody(LetterComponent cmp)
          Setter method for Template.body
 void Template.setClosing(LetterComponent cmp)
          Setter method for Template.closing
 void Template.setComponent(int compType, LetterComponent comp)
          Changes a template's component.
 

Constructors in com.instantbank.component.lettertemplate.util with parameters of type LetterComponent
Template(long code, java.lang.String name, long category, int printType, LetterComponent header, LetterComponent body, LetterComponent closing, java.lang.String timeStamp, int leftMargin, int rightMargin, int topMargin, int bottomMargin)
          Big constructor, defines explicitly all the attributes of the Template.
 

Uses of LetterComponent in com.instantbank.lettertemplate.editor.applet
 

Methods in com.instantbank.lettertemplate.editor.applet with parameters of type LetterComponent
private  boolean TemplateEditor.EditorStuff.saveComponent(LetterComponent component)
          Saves a letter component in the data base.
private  boolean TemplateEditor.EditorStuff.saveComponentAs(LetterComponent component)
          Requests to save a component.
 void TemplateEditor.ComponentEditor.fillLetterComponent(LetterComponent comp)
          Fills a letter component with the status of this ComponentEditor: the text, images and variables.
 void TemplateEditor.ComponentEditor.displayLetterComponent(LetterComponent comp)
          Shows the content of a LetterComponent in the text area of this ComponentEditor.
 CodeDescription TemplateEditorProxy.storeComponent(LetterComponent component)
          Asks for the service of storing a letter component without changing its links with any component.
 CodeDescription TemplateEditorProxy.storeComponentAs(long templateCode, LetterComponent component)
          Asks for the service of storing a letter component bound to a template.
 

Uses of LetterComponent in com.instantbank.lettertemplate.editor.web
 

Methods in com.instantbank.lettertemplate.editor.web with parameters of type LetterComponent
private  java.util.Set TemplateEditorServlet.fixDateOffset(javax.servlet.http.HttpServletRequest req, LetterComponent comp)
          Brings to zero the inconsistent date offsets in a letter component.