IBM Rational Performance Tester SDK

Uses of Interface
com.ibm.rational.test.common.models.behavior.CBActionElement

Packages that use CBActionElement
com.ibm.rational.common.test.editor.framework   
com.ibm.rational.common.test.editor.framework.extensions   
com.ibm.rational.common.test.editor.framework.kernel.actions   
com.ibm.rational.test.common.models.behavior   
com.ibm.rational.test.common.models.behavior.impl   
com.ibm.rational.test.lt.codegen.lttest.model   
com.ibm.rational.test.lt.datacorrelation.testgen   
com.ibm.rational.test.lt.datacorrelation.testgen.proto   
com.ibm.rational.test.lt.models.behavior.common   
com.ibm.rational.test.lt.models.behavior.common.impl   
com.ibm.rational.test.lt.models.behavior.data   
com.ibm.rational.test.lt.models.behavior.lttest   
com.ibm.rational.test.lt.models.behavior.lttest.impl   
com.ibm.rational.test.lt.models.behavior.vps   
com.ibm.rational.test.lt.testeditor.common   
com.ibm.rational.test.lt.testeditor.dc   
com.ibm.rational.test.lt.testeditor.jobs   
com.ibm.rational.test.lt.testeditor.main   
com.ibm.rational.test.lt.testeditor.main.providers   
com.ibm.rational.test.lt.testgen.core.testgen Provides the classes and interfaces for implementing test generators. 
 

Uses of CBActionElement in com.ibm.rational.common.test.editor.framework
 

Methods in com.ibm.rational.common.test.editor.framework that return CBActionElement
static CBActionElement MarkerUtil.findModelObject(IMarker marker, boolean type, CBTest test)
          Finds model element that has ID equal to the ID specified in the marker.
static CBActionElement[] ModelStateManager.getErrorChildren(CBActionElement element)
           
 

Methods in com.ibm.rational.common.test.editor.framework with parameters of type CBActionElement
static IMarker MarkerUtil.createBookmarkMarker(TestEditor editor, CBActionElement element, String message)
          Creates bookmark marker.
static IMarker MarkerUtil.createBookmarkMarker(TestEditor editor, CBActionElement element, String message, String fieldName, Point location)
          Creates bookmark for textual data in a field.
static IMarker MarkerUtil.createErrorMarker(TestEditor editor, CBActionElement element1, CBActionElement element2, String message, String attr_name, int severity)
          Create a marker for the test element1 and sub-element element2.
static IMarker MarkerUtil.createErrorMarker(TestEditor editor, CBActionElement element, String message, int severity)
          Create a marker for the test element.
static IMarker MarkerUtil.createErrorMarker(TestEditor editor, CBActionElement element, String message, String attribute_name, int offset, int len, int line_number, int severity)
          Create a marker for the test element.
static IMarker MarkerUtil.createGenericMarker(IResource resource, String markerType, String testId, CBActionElement element, String message, int severity)
          Creates a generic marker of type markerType
static String MarkerUtil.createLocationInfo(TestEditor editor, CBActionElement element)
           
static String MarkerUtil.createLocationInfo(TestEditor editor, CBActionElement element, CBActionElement upToThisOne)
           
static IMarker MarkerUtil.createSearchMarker(TestEditor editor, CBActionElement element, String text)
          Create a search match marker for the test element.
static IMarker MarkerUtil.createSearchMarker(TestEditor editor, CBActionElement element, String text, boolean caseSensitive, boolean regex, String attribute_name, int offset, int len, int line_number)
          Create a search match marker for the test element.
static IMarker MarkerUtil.createSearchMarker(TestEditor editor, CBActionElement element, String text, boolean caseSensitive, String attribute_name, int offset, int len, int line_number)
          Deprecated. Starting from 8.2, use MarkerUtil.createSearchMarker(TestEditor, CBActionElement, String, boolean, boolean, String, int, int, int)
static IMarker MarkerUtil.createSearchMatchMarker(TestEditor editor, CBActionElement element1, CBActionElement element2, String matchText, boolean caseSensitive, boolean regex, String attr_name)
          Create a search match marker for the test element1 and sub-element element2.
static IMarker MarkerUtil.createSearchMatchMarker(TestEditor editor, CBActionElement element1, CBActionElement element2, String matchText, boolean caseSensitive, String attr_name)
          Deprecated. Starting form 8.2 use MarkerUtil.createSearchMatchMarker(TestEditor, CBActionElement, CBActionElement, String, boolean, boolean, String)
static IMarker[] MarkerUtil.findBookmark(TestEditor editor, CBActionElement element)
          Finds bookmarks that belong to the given object.
static TestEditor TestEditorPlugin.getEditorFor(CBActionElement element)
          Returns an editor that has the model to which the argument element belongs.
static IMarker ModelStateManager.getError(CBActionElement element, String errorId)
           
static CBActionElement[] ModelStateManager.getErrorChildren(CBActionElement element)
           
static IMarker[] ModelStateManager.getErrors(CBActionElement element)
          Returns errors associated with this element.
 String PDLogger.getInfo(CBActionElement aelement)
           
 com.ibm.rational.common.test.editor.framework.kernel.interfaces.ITestEditorExtensionContext TestEditor.getProviders(CBActionElement element)
          Returns ITestEditorExtensionContext (providers container) for the specified CBActionElement.
static boolean ModelStateManager.hasError(CBActionElement element)
          Checks if the element has error state.
static boolean ModelStateManager.isModified(CBActionElement element)
          Checks if the element has modified state.
static boolean ModelStateManager.isNew(CBActionElement element)
          Checks if the element has new state.
static boolean ModelStateManager.isStatusTemp(CBActionElement element, TestEditor editor)
          Checks for temp status on the object.
static void ModelStateManager.setError(CBActionElement element, TestEditor editor, IMarker errorMarker)
          Sets error state.
static Object ModelStateManager.setStatusModified(CBActionElement element, Object context, TestEditor editor)
          Sets modified state on the model element.
static Object ModelStateManager.setStatusModified(CBActionElement element, Object context, TestEditor editor, boolean updateChildrenToo, boolean updateParent)
          Sets modified state on the model element.
static void ModelStateManager.setStatusNew(CBActionElement element, TestEditor editor)
          Set new state on model element.
static void ModelStateManager.setStatusTemp(CBActionElement element, TestEditor editor)
          Sets temp status on model element.
static void ModelStateManager.setStatusTemp(CBActionElement element, TestEditor editor, boolean updateEditor)
          Sets temp status on model element.
static void ModelStateManager.unsetError(CBActionElement element, TestEditor editor, IMarker errorMarker)
          Removes error state from model element.
static void ModelStateManager.unsetErrors(CBActionElement element, TestEditor editor)
           
static void ModelStateManager.unsetStatusModified(CBActionElement element, Object context, TestEditor editor)
          Unsets modified state on model element.
static void ModelStateManager.unsetStatusNew(CBActionElement element, Object context, TestEditor editor)
          Clears new status.
static void ModelStateManager.unsetStatusTemp(CBActionElement element, TestEditor editor)
          Unsets temp status.
static void ModelStateManager.unsetStatusTemp(CBActionElement element, TestEditor editor, boolean updateEditor)
          Unsets temp status.
 

Method parameters in com.ibm.rational.common.test.editor.framework with type arguments of type CBActionElement
protected  void TestEditor.addAvailableType(List<CBActionElement> list)
           
 

Uses of CBActionElement in com.ibm.rational.common.test.editor.framework.extensions
 

Methods in com.ibm.rational.common.test.editor.framework.extensions with parameters of type CBActionElement
static void ExtContentProvider.cacheParent(CBActionElement element, CBActionElement parent, boolean cacheIt)
           
 boolean ExtActionHandler.canMoveDown(CBActionElement element)
           
 boolean ExtActionHandler.canMoveUp(CBActionElement element)
           
 void ModelErrorChecker.clearErrors(CBActionElement element)
           
 IMarker ModelErrorChecker.createError(CBActionElement element1, CBActionElement element2, String attr_name, String msg)
          Create an error for element and secondary element.
 IMarker ModelErrorChecker.createError(CBActionElement element, String msg)
           
 IMarker ModelErrorChecker.createWarning(CBActionElement element, String msg)
           
 ImageDescriptor ExtLabelProvider.getImageDescriptor(CBActionElement element)
           
 String ExtLabelProvider.getMenuText(CBActionElement element)
          Default implementation: String text = m_confElement.getAttribute( "menuText" ); //$NON-NLS-1$ if( text == null ) text = ( element == null ) ?
 String ExtLabelProvider.getSectionDescription(CBActionElement element)
           
 String ExtLabelProvider.getStatusLine(CBActionElement element)
           
 String ExtLabelProvider.getTooltipText(CBActionElement element)
           
abstract  boolean ModelErrorChecker.hasErrors(CBActionElement element)
          This method ie expected to examine the passed object for errors.
 boolean ExtActionHandler.isStatic(CBActionElement element)
           
 boolean ExtActionHandler.isValidParent2(CBActionElement element)
          For backward compatibility this implementation always returns true
 boolean ExtLayoutProvider.layoutControls(CBActionElement selectedElement)
          Implementing classes should override and provide UI for editing.
 boolean DefaultTestLayoutProvider.layoutControls(CBActionElement selectedElement)
           
 boolean ExtActionHandler.moveChildren(CBActionElement fromParent, CBActionElement toParent, IStructuredSelection ssel, int position)
           
protected  boolean ExtActionHandler.promptToKeepChildren(CBActionElement parent, int position, CBActionElement removeObject, List children1, List children2)
           
 boolean ExtLayoutProvider.refreshControls(CBActionElement selectedElement)
          Implementing classes should override and provide UI for editing.
 boolean DefaultTestLayoutProvider.refreshControls(CBActionElement selectedElement)
           
protected  void ExtLayoutProvider.refreshDescription(CBActionElement selectedElement)
           
protected  void ExtActionHandler.relocateChildren(CBActionElement newParent, List sourceList, int position)
          Relocate the selection list into a new parent container.
 void ExtActionHandler.relocateChildren2(CBActionElement newParent, List sourceList, int position)
           
 List ExtActionHandler.sortTreeSelection(List selectedElements, CBActionElement parent)
          Sorts an array of elements obtained from MainSection.TreeView.
protected  boolean ExtActionHandler.validateReparenting(CBActionElement toParent, CBActionElement fromParent, int position, List elements1, List elements2)
           
 boolean ExtActionHandler.validateReparentingForMove(CBActionElement toParent, CBActionElement fromParent, int position, List elements1, List elements2)
          This method is called by TestMoveDownAction and TestMoveUpAction when a decision needs to be made if selected elements can be moved inside given parent.
protected  boolean ExtActionHandler.warning(PluginHelper ph, String key, CBActionElement toParent, CBActionElement fromParent)
           
 

Uses of CBActionElement in com.ibm.rational.common.test.editor.framework.kernel.actions
 

Methods in com.ibm.rational.common.test.editor.framework.kernel.actions that return CBActionElement
protected  CBActionElement NewModelElementAction.createNewModelObject(CBActionElement parent)
          Finds ExtActionHandler for its type and calls createnewObject method.
 CBActionElement NewModelElementAction.doCreate(CBActionElement parent)
          This method is called from run{} method.
 

Methods in com.ibm.rational.common.test.editor.framework.kernel.actions with parameters of type CBActionElement
protected  void NewModelElementAction.addChild(List children, CBActionElement child)
          Adds or inserts a new children into a list of children.
protected  CBActionElement NewModelElementAction.createNewModelObject(CBActionElement parent)
          Finds ExtActionHandler for its type and calls createnewObject method.
 CBActionElement NewModelElementAction.doCreate(CBActionElement parent)
          This method is called from run{} method.
protected  void NewModelElementAction.refreshTest(CBActionElement parent, CBActionElement child)
           
protected  boolean NewModelElementAction.relocateChildren(CBActionElement oldParent, CBActionElement newParent)
           
 

Uses of CBActionElement in com.ibm.rational.test.common.models.behavior
 

Subinterfaces of CBActionElement in com.ibm.rational.test.common.models.behavior
 interface CBAction
          This class contains an IAction and provide methods that manipulate the IAction
 interface CBBlock
          A CBBlock contains an IBlock and provides methods that easily manipulate a block
 interface com.ibm.rational.test.common.models.behavior.CBBlockElement
           
 interface CBComment
          A representation of the model object 'CB Comment'
 interface CBLoop
          A Loop is an IAction with a Constraint and one list
 interface com.ibm.rational.test.common.models.behavior.CBNameValuePair
           
 interface CBTestComponent
          A representation of the model object 'CB Test Component'
 interface CBTestInvocation
          A Test Invocation is an Action and it containes the test that is inviked
 interface com.ibm.rational.test.common.models.behavior.CBTransaction
           
 interface CBVersion
          A representation of the model object 'CB Version'
 

Methods in com.ibm.rational.test.common.models.behavior that return CBActionElement
 CBActionElement CBActionElement.getParent()
          for INTERNAL USE ONLY
 

Methods in com.ibm.rational.test.common.models.behavior with parameters of type CBActionElement
 void CBActionElement.move(CBActionElement newParent, int index)
          Move this model element to a new Parent.
 

Uses of CBActionElement in com.ibm.rational.test.common.models.behavior.impl
 

Classes in com.ibm.rational.test.common.models.behavior.impl that implement CBActionElement
 class com.ibm.rational.test.common.models.behavior.impl.CBActionElementImpl
           
 class com.ibm.rational.test.common.models.behavior.impl.CBActionImpl
           
 class com.ibm.rational.test.common.models.behavior.impl.CBBlockElementImpl
           
 class com.ibm.rational.test.common.models.behavior.impl.CBBlockImpl
           
 

Uses of CBActionElement in com.ibm.rational.test.lt.codegen.lttest.model
 

Methods in com.ibm.rational.test.lt.codegen.lttest.model with parameters of type CBActionElement
 com.ibm.rational.test.lt.codegen.core.model.IModelElement LTTestElementAdapter.getAdapterFor(CBActionElement elem, String actionType)
           
 

Uses of CBActionElement in com.ibm.rational.test.lt.datacorrelation.testgen
 

Fields in com.ibm.rational.test.lt.datacorrelation.testgen declared as CBActionElement
static CBActionElement IDCStringLocator.action
          the element currently being looked at.
 

Methods in com.ibm.rational.test.lt.datacorrelation.testgen that return CBActionElement
 CBActionElement IDCStringLocator.getAction()
           
 

Methods in com.ibm.rational.test.lt.datacorrelation.testgen with parameters of type CBActionElement
 com.ibm.rational.test.common.models.behavior.cbdata.BuiltInDataSource DataCorrelator.addHarvester(CBActionElement elem, String bidsName)
           
 boolean DataCorrelator.canHarvest(CBActionElement cb)
           
 boolean DataCorrelator.canSubstitute(CBActionElement cb)
           
 String DataCorrelator.getUniqueDPColName(CBActionElement elem)
          Returns unique name.
 void IDCStringLocator.setAction(CBActionElement action)
           
 

Uses of CBActionElement in com.ibm.rational.test.lt.datacorrelation.testgen.proto
 

Methods in com.ibm.rational.test.lt.datacorrelation.testgen.proto with parameters of type CBActionElement
 List IProtoElementAdapter.findHarvestSites(IDCStringLocator strl, CBActionElement cb)
          Given a string, we will work backwards from that element through the test and find all possible sites where the string is found.
 String IProtoElementAdapter.getPropertyString(CBActionElement cb, String propertyType)
          This will get a string of type propertyType out of a CBActionElement
 String IProtoElementAdapter.getPropertyType(CBActionElement cb, String type)
          This will take a propertyType used to retrieve behavior model elements and convert it to an execution propertyType
 

Uses of CBActionElement in com.ibm.rational.test.lt.models.behavior.common
 

Subinterfaces of CBActionElement in com.ibm.rational.test.lt.models.behavior.common
 interface LTAnnotation
          A representation of the model object 'LT Annotation'
 interface LTBlock
          A representation of the model object 'LT Block'
 interface LTComment
          A representation of the model object 'LT Comment'
 interface LTCondition
          Deprecated.  
 interface LTContainer
          Deprecated.  
 interface LTFalseContainer
          Deprecated.  
 interface LTIf
          Deprecated.  
 interface LTLeftOperand
          Deprecated.  
 interface LTNameTypeValue
          A representation of the model object 'LT Name Type Value'
 interface com.ibm.rational.test.lt.models.behavior.common.LTNameValuePair
           
 interface LTOperand
          Deprecated.  
 interface LTRightOperand
          Deprecated.  
 interface LTTrueContainer
          Deprecated.  
 

Uses of CBActionElement in com.ibm.rational.test.lt.models.behavior.common.impl
 

Classes in com.ibm.rational.test.lt.models.behavior.common.impl that implement CBActionElement
 class LTBlockImpl
          An implementation of the model object 'LT Block'
 

Methods in com.ibm.rational.test.lt.models.behavior.common.impl that return CBActionElement
 CBActionElement LTBlockImpl.createActionObject(String type)
           
 CBActionElement LTBlockImpl.findNextProxyReference(LTTest test, String id, String ofType)
          This method locates the first Proxy element from the beginning of the test that is referencing the element with the given id and is of the given ofType.
 

Uses of CBActionElement in com.ibm.rational.test.lt.models.behavior.data
 

Subinterfaces of CBActionElement in com.ibm.rational.test.lt.models.behavior.data
 interface Arbitrary
          A representation of the model object 'Arbitrary'
 interface BuiltInDataSource
          A representation of the model object 'Built In Data Source'
 interface com.ibm.rational.test.lt.models.behavior.data.CoreHarvester
           
 interface CorrelationHarvester
          A representation of the model object 'Correlation Harvester'
 interface DatapoolHarvester
          A representation of the model object 'pool Harvester'
 interface DataSource
          A representation of the model object 'Source'
 interface Substituter
          A representation of the model object 'Substituter'
 

Uses of CBActionElement in com.ibm.rational.test.lt.models.behavior.lttest
 

Subinterfaces of CBActionElement in com.ibm.rational.test.lt.models.behavior.lttest
 interface Datapool
          A representation of the model object 'Datapool'
 interface LTFeature
          A representation of the model object 'LT Feature'
 interface LTLoop
          Deprecated. - see CBLoop
 interface LTOptions
          A representation of the model object 'LT Options'
 interface LTResources
          A representation of the model object 'LT Resources'
 interface LTTransaction
          Deprecated.  
 interface Option
          A representation of the model object 'Option'
 interface VerificationPoint
          A representation of the model object 'Verification Point'
 

Uses of CBActionElement in com.ibm.rational.test.lt.models.behavior.lttest.impl
 

Classes in com.ibm.rational.test.lt.models.behavior.lttest.impl that implement CBActionElement
 class OptionImpl
          An implementation of the model object 'Option'
 class ProxyElementImpl
          An implementation of the model object 'Proxy Element'
 class VerificationPointImpl
          An implementation of the model object 'Verification Point'
 

Uses of CBActionElement in com.ibm.rational.test.lt.models.behavior.vps
 

Subinterfaces of CBActionElement in com.ibm.rational.test.lt.models.behavior.vps
 interface VPContent
          A representation of the model object 'VP Content'
 interface VPString
          A representation of the model object 'VP String'
 

Uses of CBActionElement in com.ibm.rational.test.lt.testeditor.common
 

Methods in com.ibm.rational.test.lt.testeditor.common that return CBActionElement
 CBActionElement SelectContentStringsDialog.getCurrentObject()
           
 CBActionElement ExtendedStyledText.getHostElement()
          Deprecated.  
protected abstract  CBActionElement ExtendedStyledText.getRelatedHostElement()
          Deprecated.  
static CBActionElement DataCorrelationUtil.resolveDcOwnership(com.ibm.rational.test.common.models.behavior.cbdata.CoreHarvester ch)
          Finds IDcWonershipResolver based on the argument DataSource.
static CBActionElement DataCorrelationUtil.resolveDcOwnership(String attribute, CBActionElement action)
           
static CBActionElement DataCorrelationUtil.resolveDcOwnership(com.ibm.rational.test.common.models.behavior.cbdata.Substituter substituter)
          Finds IDcWonershipResolver based on the argument DataSource.
 

Methods in com.ibm.rational.test.lt.testeditor.common with parameters of type CBActionElement
static int DataCorrelationUtil.getDcSize(CBActionElement element)
           
static CBActionElement DataCorrelationUtil.resolveDcOwnership(String attribute, CBActionElement action)
           
 void DatasourceSelectionDialog.setAnchorElement(CBActionElement anchorElement)
           
protected  void ExtendedStyledText.setHostElement(CBActionElement req)
          Deprecated. Sets host element.
 void ExtendedStyledText.setText(String text, CBActionElement httpreq)
          Deprecated.  
 

Constructors in com.ibm.rational.test.lt.testeditor.common with parameters of type CBActionElement
DatasourceSelectionDialog(Shell parent, CBActionElement anchorElement, TestEditor editor)
           
ExtendedStyledText(ExtLayoutProvider hostLayoutProvider, CBActionElement element, StyledText stext, String attributeName)
          Deprecated. Constructor
 

Uses of CBActionElement in com.ibm.rational.test.lt.testeditor.dc
 

Methods in com.ibm.rational.test.lt.testeditor.dc that return CBActionElement
 CBActionElement DataBoundStyleRange.getData()
           
 

Methods in com.ibm.rational.test.lt.testeditor.dc with parameters of type CBActionElement
 void DataBoundStyleRange.setData(CBActionElement m_data)
           
 

Uses of CBActionElement in com.ibm.rational.test.lt.testeditor.jobs
 

Methods in com.ibm.rational.test.lt.testeditor.jobs with parameters of type CBActionElement
abstract  boolean VpSettingJob.handleObject(CBActionElement object)
           
protected  void VpSettingJob.refreshElement(CBActionElement element)
           
protected  void VpSettingJob.storeNew(CBActionElement newElement)
           
 

Uses of CBActionElement in com.ibm.rational.test.lt.testeditor.main
 

Methods in com.ibm.rational.test.lt.testeditor.main with parameters of type CBActionElement
 com.ibm.rational.test.lt.testeditor.main.LoadTestEditor.SplitTestRegion LoadTestEditor.getElementRegion(CBActionElement element)
           
 

Uses of CBActionElement in com.ibm.rational.test.lt.testeditor.main.providers
 

Methods in com.ibm.rational.test.lt.testeditor.main.providers with parameters of type CBActionElement
 boolean LtLayoutProvider.layoutControls(CBActionElement selectedElement)
           
 boolean LtLayoutProvider.refreshControls(CBActionElement selectedElement)
           
 

Uses of CBActionElement in com.ibm.rational.test.lt.testgen.core.testgen
 

Methods in com.ibm.rational.test.lt.testgen.core.testgen with parameters of type CBActionElement
 void ITestStack.add(CBActionElement element, long timestamp, boolean hasThinkTime)
          Adds an element to the current element host.
 


IBM Rational Performance Tester SDK

© Copyright IBM Corp. 2012. All rights reserved.