From: <asa...@us...> - 2013-03-07 10:04:17
|
Revision: 8146 http://sourceforge.net/p/htmlunit/code/8146 Author: asashour Date: 2013-03-07 10:04:13 +0000 (Thu, 07 Mar 2013) Log Message: ----------- Remove deprecated BaseFrame. Modified Paths: -------------- trunk/htmlunit/src/changes/changes.xml trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/HtmlFrame.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/HtmlInlineFrame.java Removed Paths: ------------- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/BaseFrame.java Modified: trunk/htmlunit/src/changes/changes.xml =================================================================== --- trunk/htmlunit/src/changes/changes.xml 2013-03-06 08:58:49 UTC (rev 8145) +++ trunk/htmlunit/src/changes/changes.xml 2013-03-07 10:04:13 UTC (rev 8146) @@ -7,6 +7,11 @@ </properties> <body> + <release version="2.13" date="???" description="Bugfixes"> + <action type="remove" dev="asashour"> + Remove deprecated BaseFrame. + </action> + </release> <release version="2.12" date="Mar 6, 2013" description="Bugfixes, CSS3 Selectors"> <action type="update" dev="mguillem"> BrowserVersion: support FF17, deprecate FF3.6. Deleted: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/BaseFrame.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/BaseFrame.java 2013-03-06 08:58:49 UTC (rev 8145) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/BaseFrame.java 2013-03-07 10:04:13 UTC (rev 8146) @@ -1,52 +0,0 @@ -/* - * Copyright (c) 2002-2013 Gargoyle Software Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package com.gargoylesoftware.htmlunit.html; - -import java.util.Map; - -import com.gargoylesoftware.htmlunit.SgmlPage; - -/** - * Base class for frame and iframe. - * - * @version $Revision$ - * @author <a href="mailto:mb...@Ga...">Mike Bowler</a> - * @author David K. Taylor - * @author <a href="mailto:cs...@dy...">Christian Sell</a> - * @author Marc Guillemot - * @author David D. Kilzer - * @author Stefan Anzinger - * @author Ahmed Ashour - * @author Dmitri Zoubkov - * @author Daniel Gredler - * @author Ronald Brill - * @deprecated as of 2.11, please use {@link BaseFrameElement} instead - */ -@Deprecated -public abstract class BaseFrame extends BaseFrameElement { - - /** - * Creates an instance of BaseFrame. - * - * @param namespaceURI the URI that identifies an XML namespace - * @param qualifiedName the qualified name of the element type to instantiate - * @param page the HtmlPage that contains this element - * @param attributes the initial attributes - */ - protected BaseFrame(final String namespaceURI, final String qualifiedName, final SgmlPage page, - final Map<String, DomAttr> attributes) { - super(namespaceURI, qualifiedName, page, attributes); - } -} Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/HtmlFrame.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/HtmlFrame.java 2013-03-06 08:58:49 UTC (rev 8145) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/HtmlFrame.java 2013-03-07 10:04:13 UTC (rev 8146) @@ -28,7 +28,7 @@ * @author Marc Guillemot * @author Ahmed Ashour */ -public class HtmlFrame extends BaseFrame { +public class HtmlFrame extends BaseFrameElement { /** The HTML tag represented by this element. */ public static final String TAG_NAME = "frame"; Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/HtmlInlineFrame.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/HtmlInlineFrame.java 2013-03-06 08:58:49 UTC (rev 8145) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/HtmlInlineFrame.java 2013-03-07 10:04:13 UTC (rev 8146) @@ -28,7 +28,7 @@ * @author Marc Guillemot * @author Ahmed Ashour */ -public class HtmlInlineFrame extends BaseFrame { +public class HtmlInlineFrame extends BaseFrameElement { /** The HTML tag represented by this element. */ public static final String TAG_NAME = "iframe"; |