View Javadoc

1   /*
2    *  soapUI, copyright (C) 2004-2010 eviware.com 
3    *
4    *  soapUI is free software; you can redistribute it and/or modify it under the 
5    *  terms of version 2.1 of the GNU Lesser General Public License as published by 
6    *  the Free Software Foundation.
7    *
8    *  soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
9    *  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
10   *  See the GNU Lesser General Public License for more details at gnu.org.
11   */
12  
13  package com.eviware.soapui.impl.rest.panels.request.views.html;
14  
15  import com.eviware.soapui.impl.support.http.HttpRequestInterface;
16  import com.eviware.soapui.impl.support.panels.AbstractHttpXmlRequestDesktopPanel.HttpResponseMessageEditor;
17  import com.eviware.soapui.model.ModelItem;
18  import com.eviware.soapui.support.editor.Editor;
19  import com.eviware.soapui.support.editor.EditorView;
20  import com.eviware.soapui.support.editor.registry.ResponseEditorViewFactory;
21  
22  public class HttpHtmlResponseViewFactory implements ResponseEditorViewFactory
23  {
24  	public final static String VIEW_ID = "HTML Response";
25  
26  	@SuppressWarnings( "unchecked" )
27  	public EditorView<?> createResponseEditorView( Editor<?> editor, ModelItem modelItem )
28  	{
29  		if( editor instanceof HttpResponseMessageEditor && modelItem instanceof HttpRequestInterface<?> )
30  		{
31  			return new HttpHtmlResponseView( ( HttpResponseMessageEditor )editor, ( HttpRequestInterface<?> )modelItem );
32  		}
33  
34  		return null;
35  	}
36  
37  	public String getViewId()
38  	{
39  		return VIEW_ID;
40  	}
41  }