Uses of Interface
org.openfjord.business.domain.SurveyElement

Packages that use SurveyElement
org.openfjord.business.domain   
org.openfjord.business.entities   
org.openfjord.business.entities.valueobjects   
org.openfjord.business.workflow   
 

Uses of SurveyElement in org.openfjord.business.domain
 

Subinterfaces of SurveyElement in org.openfjord.business.domain
 interface CardinalQuestion
          The business objects interface for a cardinal-question item Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) 2003 Company: University of Muenster
 interface NominalQuestion
          The interface for an nominal-question item Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) 2003 Company: University of Muenster
 interface NonCardinalQuestion
          The interface for a non-cardinal question item Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) 2003 Company: University of Muenster
 interface OrdinalQuestion
          The interface for an ordinal-question item Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) 2003 Company: University of Muenster
 interface PageBreak
          The interface for a page-break item Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) 2003 Company: University of Muenster
 interface Paragraph
          The interface for a paragraph item Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) 2003 Company: University of Muenster
 interface Question
          The interface for a question item Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) 2003 Company: University of Muenster
 interface ScaledQuestion
          The interface for a scaled-question item Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) 2003 Company: University of Muenster
 interface SurveyElementContainer
          The interface for a survey-element-container item Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) 2003 Company: University of Muenster
 interface SurveyFooter
          The interface for a survey-footer item Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) 2003 Company: University of Muenster
 interface SurveyHeader
          The interface for a survey-header item Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) 2003 Company: University of Muenster
 interface TextElement
          The interface for a text-element item Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) 2003 Company: University of Muenster
 

Methods in org.openfjord.business.domain that return SurveyElement
 SurveyElement SurveyElement.getParent()
          Gets the parent survey element in the logical structure of the survey
 

Methods in org.openfjord.business.domain with parameters of type SurveyElement
 void SurveyElementContainer.addElement(SurveyElement element)
          Adds a survey-element to the container
 void SurveyElementContainer.removeElement(SurveyElement element)
          removes a survey-element from the container
 void SurveyElement.setParent(SurveyElement parent)
          Sets the parent survey element in the logical structure of the survey
 

Uses of SurveyElement in org.openfjord.business.entities
 

Methods in org.openfjord.business.entities that return SurveyElement
static SurveyElement SurveyElementVOFactory.createValueObject(SurveyElementBean surveyElementBean)
          Creates an Value Object of the correct Type from the given Survey Element Entity Bean.
 SurveyElement SurveyElementLocal.getData()
           
 SurveyElement SurveyElementBean.getData()
          creates a value object
 

Methods in org.openfjord.business.entities with parameters of type SurveyElement
static void SurveyElementVOFactory.mergeData(SurveyElement surveyElementVO, SurveyElementBean surveyElementBean)
          This method will merge the data defined by the value object into the SurveyElementBean and the QuestionBean.
 void SurveyElementLocal.setData(SurveyElement surveyElement)
           
static SurveyElementLocal SurveyElementFactory.createSurveyElement(SurveyElement element)
          Creates a new SurveyElement entity bean.
 void SurveyElementBean.setData(SurveyElement surveyElement)
          update the properties with the given data within the value object
 

Uses of SurveyElement in org.openfjord.business.entities.valueobjects
 

Classes in org.openfjord.business.entities.valueobjects that implement SurveyElement
 class CardinalQuestionVO
          Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) by Michael Lange 2003 Company: University of Muenster
 class NominalQuestionVO
          Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) by Michael Lange 2003 Company: University of Muenster
 class NonCardinalQuestionVO
          Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) by Michael Lange 2003 Company: University of Muenster
 class OrdinalQuestionVO
          Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) by Michael Lange 2003 Company: University of Muenster
 class ParagraphVO
          Title: openFJORD
 class QuestionVO
          Title: openFJORD Description: open flexible online research designer
 class ScaledQuestionVO
          Title: openFJORD Description: open Flexible Java Online Research Designer Copyright: Copyright (c) by Michael Lange 2003 Company: University of Muenster
 class SurveyElementContainerVO
          value object for SurveyElementContainer
 class SurveyElementVO
          Title: openFJORD
 class SurveyFooterVO
           
 class SurveyHeaderVO
          Title: openFJORD
 class TextElementVO
          Title: openFJORD Description: open flexible online research designer
 

Methods in org.openfjord.business.entities.valueobjects that return SurveyElement
 SurveyElement SurveyElementVO.getParent()
           
 

Methods in org.openfjord.business.entities.valueobjects with parameters of type SurveyElement
 void SurveyElementVO.setParent(SurveyElement parent)
           
 void SurveyElementContainerVO.removeElement(SurveyElement element)
           
 void SurveyElementContainerVO.addElement(SurveyElement element)
           
 

Uses of SurveyElement in org.openfjord.business.workflow
 

Methods in org.openfjord.business.workflow with parameters of type SurveyElement
 SurveyElementContainer ElementManagerDelegate.getContainer(SurveyElement element)
           
 SurveyElementContainer ElementManagerDelegate.addElement(SurveyElement element, SurveyElementContainer parent)
           
 SurveyElementContainer ElementManagerDelegate.updateElement(SurveyElement element)
           
 SurveyElementContainer ElementManagerDelegate.deleteElement(SurveyElement element)
           
 SurveyElementContainer ElementManagerDelegate.moveElement(SurveyElement element, int offset)
           
 SurveyElementContainer ElementManagerDelegate.moveElement(SurveyElement element, SurveyElementContainer destination)
           
 SurveyElementContainer ElementManagerBean.getContainer(SurveyElement element)
          Returns a container object with sub elements
 SurveyElementContainer ElementManagerBean.addElement(SurveyElement element, SurveyElementContainer parent)
          Adds a new element to a parent container
 SurveyElementContainer ElementManagerBean.updateElement(SurveyElement element)
          Updates a server side object with new data.
 SurveyElementContainer ElementManagerBean.deleteElement(SurveyElement element)
          Moves an element
 SurveyElementContainer ElementManagerBean.moveElement(SurveyElement element, int offset)
          Moves an element inside a container list
 SurveyElementContainer ElementManagerBean.moveElement(SurveyElement element, SurveyElementContainer destination)
          Moves a element to another surveyelement container
 SurveyElementContainer ElementManager.getContainer(SurveyElement element)
          Returning a survey element container with his sub elements defined by his value object.
 SurveyElementContainer ElementManager.addElement(SurveyElement element, SurveyElementContainer parent)
          This method will create a new server side element and will add it to the parent element.
 SurveyElementContainer ElementManager.updateElement(SurveyElement element)
          Updates the server side element with new data.
 SurveyElementContainer ElementManager.deleteElement(SurveyElement element)
          Deletes a specific service side element specified by the primary key information of the value object
 SurveyElementContainer ElementManager.moveElement(SurveyElement element, int offset)
          Moves the element to a new position in the same container
 SurveyElementContainer ElementManager.moveElement(SurveyElement element, SurveyElementContainer destination)
          Moves the element from the current parent container to the new parent container
 



openFJORD Copyright © 2003 University of Muenster.