⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 noframesview.java

📁 Mobile 应用程序使用 Java Micro Edition (Java ME) 平台
💻 JAVA
字号:
/* * @(#)NoFramesView.java	1.10 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package javax.swing.text.html;import javax.swing.text.*;import java.awt.*;/** * This is the view associated with the html tag NOFRAMES. * This view has been written to ignore the contents of the * NOFRAMES tag.  The contents of the tag will only be visible * when the JTextComponent the view is contained in is editable. * * @author  Sunita Mani * @version 1.10 11/17/05 */class NoFramesView extends BlockView {    /**     * Creates a new view that represents an     * html box.  This can be used for a number     * of elements.  By default this view is not     * visible.     *     * @param elem the element to create a view for     * @param axis either View.X_AXIS or View.Y_AXIS     */    public NoFramesView(Element elem, int axis) {	super(elem, axis);	visible = false;    }    /**     * If this view is not visible, then it returns.     * Otherwise it invokes the superclass.     *      * @param g the rendering surface to use     * @param allocation the allocated region to render into     * @see #isVisible     * @see text.ParagraphView#paint     */    public void paint(Graphics g, Shape allocation) {	Container host = getContainer();	if (host != null &&	    visible != ((JTextComponent)host).isEditable()) {	    visible = ((JTextComponent)host).isEditable();	}	if (!isVisible()) {	    return;	}	super.paint(g, allocation);    }    /**     * Determines if the JTextComponent that the view     * is contained in is editable. If so, then this     * view and all its child views are visible.     * Once this has been determined, the superclass     * is invoked to continue processing.     *     * @param p the parent View.     * @see BlockView#setParent      */    public void setParent(View p) {	if (p != null) {	    Container host = p.getContainer();	    if (host != null) {		visible = ((JTextComponent)host).isEditable();	    }	}	super.setParent(p);      }    /**     * Returns a true/false value that represents     * whether the view is visible or not.     */    public boolean isVisible() {	return visible;    }    /**     * Do nothing if the view is not visible, otherwise     * invoke the superclass to perform layout.     */    protected void layout(int width, int height) {	if (!isVisible()) {	    return;	}	super.layout(width, height);       }            /**     * Determines the preferred span for this view.  Returns     * 0 if the view is not visible, otherwise it calls the     * superclass method to get the preferred span.     * axis.     *     * @param axis may be either View.X_AXIS or View.Y_AXIS     * @return   the span the view would like to be rendered into;     *           typically the view is told to render into the span     *           that is returned, although there is no guarantee;       *           the parent may choose to resize or break the view     * @see text.ParagraphView#getPreferredSpan     */    public float getPreferredSpan(int axis) {       	if (!visible) {	    return 0;	}	return super.getPreferredSpan(axis);    }    /**     * Determines the minimum span for this view along an     * axis.  Returns 0 if the view is not visible, otherwise      * it calls the superclass method to get the minimum span.     *     * @param axis may be either <code>View.X_AXIS</code> or      *		<code>View.Y_AXIS</code>     * @return  the minimum span the view can be rendered into     * @see text.ParagraphView#getMinimumSpan     */    public float getMinimumSpan(int axis) {	if (!visible) {	    return 0;	}	return super.getMinimumSpan(axis);    }    /**     * Determines the maximum span for this view along an     * axis.  Returns 0 if the view is not visible, otherwise     * it calls the superclass method ot get the maximum span.     *     * @param axis may be either <code>View.X_AXIS</code> or      *	<code>View.Y_AXIS</code>     * @return  the maximum span the view can be rendered into     * @see text.ParagraphView#getMaximumSpan     */    public float getMaximumSpan(int axis) {	if (!visible) {	    return 0;	}	return super.getMaximumSpan(axis);    }    boolean visible;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -