Java Doc for PropertyTransfer.java in  » Web-Services » soapui-1.7.5 » com » eviware » soapui » impl » wsdl » teststeps » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Services » soapui 1.7.5 » com.eviware.soapui.impl.wsdl.teststeps 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.eviware.soapui.impl.wsdl.teststeps.PropertyTransfer

PropertyTransfer
public class PropertyTransfer implements PropertyChangeNotifier(Code)
Class for transferring a property value between 2 test steps. This class is relatively complex due to backwards compatibility issues and to gracefull handling of references test steps and properties.
author:
   Ole.Matzura


Field Summary
final public static  StringCONFIG_PROPERTY
    
final public static  StringNAME_PROPERTY
    
final public static  StringSOURCE_PATH_PROPERTY
    
final public static  StringSOURCE_STEP_PROPERTY
    
final public static  StringSOURCE_TYPE_PROPERTY
    
final public static  StringTARGET_PATH_PROPERTY
    
final public static  StringTARGET_STEP_PROPERTY
    
final public static  StringTARGET_TYPE_PROPERTY
    

Constructor Summary
public  PropertyTransfer(TestStep testStep)
    
public  PropertyTransfer(TestStep testStep, ValueTransferConfig config)
    

Method Summary
public  voidaddPropertyChangeListener(String propertyName, PropertyChangeListener listener)
    
public  voidaddPropertyChangeListener(PropertyChangeListener listener)
    
public  ValueTransferConfiggetConfig()
    
public  booleangetFailOnError()
    
public  booleangetIgnoreEmpty()
    
public  StringgetName()
    
public  booleangetSetNullOnMissingSource()
    
public  StringgetSourcePath()
    
public  TestStepPropertygetSourceProperty()
    
public  StringgetSourcePropertyName()
     Returns the name of the source property.
public  TestStepgetSourceStep()
    
public  StringgetSourceStepName()
    
public  StringgetTargetPath()
    
public  TestStepPropertygetTargetProperty()
    
public  StringgetTargetPropertyName()
    
public  TestStepgetTargetStep()
    
public  StringgetTargetStepName()
    
public  booleangetTransferTextContent()
    
public  booleangetTransferToAll()
    
public  voidrelease()
    
public  voidreleaseListeners()
    
public  voidremovePropertyChangeListener(PropertyChangeListener listener)
    
public  voidremovePropertyChangeListener(String propertyName, PropertyChangeListener listener)
    
 voidsetConfig(ValueTransferConfig config)
    
 voidsetConfigOnMove(ValueTransferConfig config)
    
public  voidsetFailOnError(boolean failOnError)
    
public  voidsetIgnoreEmpty(boolean ignoreEmpty)
    
public  voidsetName(String name)
    
public  voidsetSetNullOnMissingSource(boolean setNullOnMissingSource)
    
public  voidsetSourcePath(String path)
    
public  voidsetSourcePropertyName(String name)
    
public  voidsetSourceStepName(String sourceStep)
    
public  voidsetTargetPath(String path)
    
public  voidsetTargetPropertyName(String name)
    
public  voidsetTargetStepName(String targetStep)
    
public  voidsetTransferTextContent(boolean transferTextContent)
    
public  voidsetTransferToAll(boolean transferToAll)
    
public  String[]transferProperties(SubmitContext context)
    
protected  String[]transferStringToString(TestStepProperty sourceProperty, TestStepProperty targetProperty)
    
protected  String[]transferStringToXml(TestStepProperty sourceProperty, TestStepProperty targetProperty, SubmitContext context)
    
protected  StringtransferXmlToString(TestStepProperty sourceProperty, TestStepProperty targetProperty, SubmitContext context)
    
protected  String[]transferXmlToXml(TestStepProperty sourceProperty, TestStepProperty targetProperty, SubmitContext context)
    

Field Detail
CONFIG_PROPERTY
final public static String CONFIG_PROPERTY(Code)



NAME_PROPERTY
final public static String NAME_PROPERTY(Code)



SOURCE_PATH_PROPERTY
final public static String SOURCE_PATH_PROPERTY(Code)



SOURCE_STEP_PROPERTY
final public static String SOURCE_STEP_PROPERTY(Code)



SOURCE_TYPE_PROPERTY
final public static String SOURCE_TYPE_PROPERTY(Code)



TARGET_PATH_PROPERTY
final public static String TARGET_PATH_PROPERTY(Code)



TARGET_STEP_PROPERTY
final public static String TARGET_STEP_PROPERTY(Code)



TARGET_TYPE_PROPERTY
final public static String TARGET_TYPE_PROPERTY(Code)




Constructor Detail
PropertyTransfer
public PropertyTransfer(TestStep testStep)(Code)



PropertyTransfer
public PropertyTransfer(TestStep testStep, ValueTransferConfig config)(Code)




Method Detail
addPropertyChangeListener
public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)



addPropertyChangeListener
public void addPropertyChangeListener(PropertyChangeListener listener)(Code)



getConfig
public ValueTransferConfig getConfig()(Code)



getFailOnError
public boolean getFailOnError()(Code)



getIgnoreEmpty
public boolean getIgnoreEmpty()(Code)



getName
public String getName()(Code)



getSetNullOnMissingSource
public boolean getSetNullOnMissingSource()(Code)



getSourcePath
public String getSourcePath()(Code)



getSourceProperty
public TestStepProperty getSourceProperty()(Code)



getSourcePropertyName
public String getSourcePropertyName()(Code)
Returns the name of the source property.



getSourceStep
public TestStep getSourceStep()(Code)



getSourceStepName
public String getSourceStepName()(Code)



getTargetPath
public String getTargetPath()(Code)



getTargetProperty
public TestStepProperty getTargetProperty()(Code)



getTargetPropertyName
public String getTargetPropertyName()(Code)



getTargetStep
public TestStep getTargetStep()(Code)



getTargetStepName
public String getTargetStepName()(Code)



getTransferTextContent
public boolean getTransferTextContent()(Code)



getTransferToAll
public boolean getTransferToAll()(Code)



release
public void release()(Code)



releaseListeners
public void releaseListeners()(Code)



removePropertyChangeListener
public void removePropertyChangeListener(PropertyChangeListener listener)(Code)



removePropertyChangeListener
public void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)



setConfig
void setConfig(ValueTransferConfig config)(Code)



setConfigOnMove
void setConfigOnMove(ValueTransferConfig config)(Code)



setFailOnError
public void setFailOnError(boolean failOnError)(Code)



setIgnoreEmpty
public void setIgnoreEmpty(boolean ignoreEmpty)(Code)



setName
public void setName(String name)(Code)



setSetNullOnMissingSource
public void setSetNullOnMissingSource(boolean setNullOnMissingSource)(Code)



setSourcePath
public void setSourcePath(String path)(Code)



setSourcePropertyName
public void setSourcePropertyName(String name)(Code)



setSourceStepName
public void setSourceStepName(String sourceStep)(Code)



setTargetPath
public void setTargetPath(String path)(Code)



setTargetPropertyName
public void setTargetPropertyName(String name)(Code)



setTargetStepName
public void setTargetStepName(String targetStep)(Code)



setTransferTextContent
public void setTransferTextContent(boolean transferTextContent)(Code)



setTransferToAll
public void setTransferToAll(boolean transferToAll)(Code)



transferProperties
public String[] transferProperties(SubmitContext context) throws PropertyTransferException(Code)



transferStringToString
protected String[] transferStringToString(TestStepProperty sourceProperty, TestStepProperty targetProperty)(Code)



transferStringToXml
protected String[] transferStringToXml(TestStepProperty sourceProperty, TestStepProperty targetProperty, SubmitContext context) throws XmlException, Exception(Code)



transferXmlToString
protected String transferXmlToString(TestStepProperty sourceProperty, TestStepProperty targetProperty, SubmitContext context) throws XmlException, Exception(Code)



transferXmlToXml
protected String[] transferXmlToXml(TestStepProperty sourceProperty, TestStepProperty targetProperty, SubmitContext context) throws XmlException, Exception(Code)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.