Uses of Interface
com.eviware.soapui.support.editor.EditorView

Packages that use EditorView
com.eviware.soapui.impl.rest.panels.request.inspectors.representations   
com.eviware.soapui.impl.rest.panels.request.views.content   
com.eviware.soapui.impl.rest.panels.request.views.html   
com.eviware.soapui.impl.rest.panels.request.views.json   
com.eviware.soapui.support.editor XmlEditor and related classes and interfaces 
com.eviware.soapui.support.editor.inspectors Base package for XmlEditor inspectors 
com.eviware.soapui.support.editor.inspectors.attachments AttachmentInspector-related classes 
com.eviware.soapui.support.editor.inspectors.aut   
com.eviware.soapui.support.editor.inspectors.httpheaders   
com.eviware.soapui.support.editor.inspectors.script   
com.eviware.soapui.support.editor.inspectors.ssl   
com.eviware.soapui.support.editor.inspectors.wsa   
com.eviware.soapui.support.editor.inspectors.wss   
com.eviware.soapui.support.editor.registry   
com.eviware.soapui.support.editor.support   
com.eviware.soapui.support.editor.views Base package for XmlView views 
com.eviware.soapui.support.editor.views.xml.raw   
com.eviware.soapui.support.editor.views.xml.source Default XML Source View classes 
com.eviware.soapui.support.editor.xml   
 

Uses of EditorView in com.eviware.soapui.impl.rest.panels.request.inspectors.representations
 

Methods in com.eviware.soapui.impl.rest.panels.request.inspectors.representations with parameters of type EditorView
 boolean AbstractRestRepresentationsInspector.isEnabledFor(EditorView<XmlDocument> view)
           
 

Uses of EditorView in com.eviware.soapui.impl.rest.panels.request.views.content
 

Classes in com.eviware.soapui.impl.rest.panels.request.views.content that implement EditorView
 class RestRequestContentView
           
 

Methods in com.eviware.soapui.impl.rest.panels.request.views.content that return EditorView
 EditorView<?> RestRequestContentViewFactory.createRequestEditorView(Editor<?> editor, ModelItem modelItem)
           
 

Uses of EditorView in com.eviware.soapui.impl.rest.panels.request.views.html
 

Classes in com.eviware.soapui.impl.rest.panels.request.views.html that implement EditorView
 class RestHtmlResponseView
           
 

Methods in com.eviware.soapui.impl.rest.panels.request.views.html that return EditorView
 EditorView<?> RestHtmlResponseViewFactory.createResponseEditorView(Editor<?> editor, ModelItem modelItem)
           
 

Uses of EditorView in com.eviware.soapui.impl.rest.panels.request.views.json
 

Classes in com.eviware.soapui.impl.rest.panels.request.views.json that implement EditorView
 class RestJsonResponseView
           
 

Methods in com.eviware.soapui.impl.rest.panels.request.views.json that return EditorView
 EditorView<?> RestJsonResponseViewFactory.createResponseEditorView(Editor<?> editor, ModelItem modelItem)
           
 

Uses of EditorView in com.eviware.soapui.support.editor
 

Methods in com.eviware.soapui.support.editor that return EditorView
 EditorView<T> Editor.getCurrentView()
           
 EditorView<T> Editor.getView(java.lang.String viewId)
           
 

Methods in com.eviware.soapui.support.editor that return types with arguments of type EditorView
 java.util.List<EditorView<T>> Editor.getViews()
           
 

Methods in com.eviware.soapui.support.editor with parameters of type EditorView
 void Editor.addEditorView(EditorView<T> editorView)
           
 boolean EditorInspector.isEnabledFor(EditorView<T> view)
           
 

Uses of EditorView in com.eviware.soapui.support.editor.inspectors
 

Methods in com.eviware.soapui.support.editor.inspectors with parameters of type EditorView
 boolean AbstractXmlInspector.isEnabledFor(EditorView<XmlDocument> view)
           
 

Uses of EditorView in com.eviware.soapui.support.editor.inspectors.attachments
 

Methods in com.eviware.soapui.support.editor.inspectors.attachments with parameters of type EditorView
 boolean AttachmentsInspector.isEnabledFor(EditorView<XmlDocument> view)
           
 

Uses of EditorView in com.eviware.soapui.support.editor.inspectors.aut
 

Methods in com.eviware.soapui.support.editor.inspectors.aut with parameters of type EditorView
 boolean RequestAutInspector.isEnabledFor(EditorView<XmlDocument> view)
           
 

Uses of EditorView in com.eviware.soapui.support.editor.inspectors.httpheaders
 

Methods in com.eviware.soapui.support.editor.inspectors.httpheaders with parameters of type EditorView
 boolean HttpHeadersInspector.isEnabledFor(EditorView<XmlDocument> view)
           
 

Uses of EditorView in com.eviware.soapui.support.editor.inspectors.script
 

Methods in com.eviware.soapui.support.editor.inspectors.script with parameters of type EditorView
 boolean MockResponseScriptInspector.isEnabledFor(EditorView<XmlDocument> view)
           
 

Uses of EditorView in com.eviware.soapui.support.editor.inspectors.ssl
 

Methods in com.eviware.soapui.support.editor.inspectors.ssl with parameters of type EditorView
 boolean ResponseSSLInspector.isEnabledFor(EditorView<XmlDocument> view)
           
 

Uses of EditorView in com.eviware.soapui.support.editor.inspectors.wsa
 

Methods in com.eviware.soapui.support.editor.inspectors.wsa with parameters of type EditorView
 boolean AbstractWsaInspector.isEnabledFor(EditorView<XmlDocument> view)
           
 

Uses of EditorView in com.eviware.soapui.support.editor.inspectors.wss
 

Methods in com.eviware.soapui.support.editor.inspectors.wss with parameters of type EditorView
 boolean AbstractWssInspector.isEnabledFor(EditorView<XmlDocument> view)
           
 

Uses of EditorView in com.eviware.soapui.support.editor.registry
 

Methods in com.eviware.soapui.support.editor.registry that return EditorView
 EditorView<?> RequestEditorViewFactory.createRequestEditorView(Editor<?> editor, ModelItem modelItem)
           
 EditorView<?> ResponseEditorViewFactory.createResponseEditorView(Editor<?> editor, ModelItem modelItem)
           
 

Uses of EditorView in com.eviware.soapui.support.editor.support
 

Classes in com.eviware.soapui.support.editor.support that implement EditorView
 class AbstractEditorView<T extends EditorDocument>
          Abstract base-class to be extended by XmlViews
 

Uses of EditorView in com.eviware.soapui.support.editor.views
 

Classes in com.eviware.soapui.support.editor.views that implement EditorView
 class AbstractXmlEditorView<T extends XmlDocument>
          Abstract base-class to be extended by XmlViews
 

Uses of EditorView in com.eviware.soapui.support.editor.views.xml.raw
 

Classes in com.eviware.soapui.support.editor.views.xml.raw that implement EditorView
 class RawXmlEditor<T extends XmlDocument>
           
 

Methods in com.eviware.soapui.support.editor.views.xml.raw that return EditorView
 EditorView<XmlDocument> RawXmlEditorFactory.createRequestEditorView(Editor<?> editor, ModelItem modelItem)
           
 EditorView<?> RawXmlEditorFactory.createResponseEditorView(Editor<?> editor, ModelItem modelItem)
           
 

Uses of EditorView in com.eviware.soapui.support.editor.views.xml.source
 

Classes in com.eviware.soapui.support.editor.views.xml.source that implement EditorView
 class XmlSourceEditorView
          Default "XML" source editor view in soapUI
static class XmlSourceEditorViewFactory.WsdlMockRequestXmlSourceEditor
          XmlSource editor for a WsdlMockRequest
static class XmlSourceEditorViewFactory.WsdlMockResponseXmlSourceEditor
          XmlSource editor for a WsdlMockResponse
static class XmlSourceEditorViewFactory.WsdlRequestXmlSourceEditor
          XmlSource editor for a WsdlRequest
static class XmlSourceEditorViewFactory.WsdlResponseXmlSourceEditor
          XmlSource editor for a WsdlResponse
 

Methods in com.eviware.soapui.support.editor.views.xml.source that return EditorView
 EditorView<?> XmlSourceEditorViewFactory.createRequestEditorView(Editor<?> editor, ModelItem modelItem)
           
 EditorView<?> XmlSourceEditorViewFactory.createResponseEditorView(Editor<?> editor, ModelItem modelItem)
           
 

Uses of EditorView in com.eviware.soapui.support.editor.xml
 

Subinterfaces of EditorView in com.eviware.soapui.support.editor.xml
 interface XmlEditorView<T extends XmlDocument>
          Views available for the XmlDocument of a XmlEditor
 

Methods in com.eviware.soapui.support.editor.xml with parameters of type EditorView
 boolean XmlInspector.isEnabledFor(EditorView<XmlDocument> view)
           
 



Copyright © 2005-2008 eviware.com. All Rights Reserved.