alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

// $Header: /home/cvs/jakarta-jmeter/src/htmlparser/org/htmlparser/beans/HTMLTextBean.java,v 1.2 2004/02/10 13:41:09 woolfel Exp $
/*
 * ====================================================================
 * Copyright 2002-2004 The Apache Software Foundation.
 *
 * 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.
 * 
 */

// The developers of JMeter and Apache are greatful to the developers
// of HTMLParser for giving Apache Software Foundation a non-exclusive
// license. The performance benefits of HTMLParser are clear and the
// users of JMeter will benefit from the hard work the HTMLParser
// team. For detailed information about HTMLParser, the project is
// hosted on sourceforge at http://htmlparser.sourceforge.net/.
//
// HTMLParser was originally created by Somik Raha in 2000. Since then
// a healthy community of users has formed and helped refine the
// design so that it is able to tackle the difficult task of parsing
// dirty HTML. Derrick Oswald is the current lead developer and was kind
// enough to assist JMeter.

package org.htmlparser.beans;

import java.awt.Dimension;
import java.awt.FontMetrics;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.io.Serializable;
import java.net.URLConnection;

import javax.swing.JTextArea;

/**
 * Display the textual URL contents.
 * @author Derrick Oswald
 * Created on December 24, 2002, 3:49 PM
 */
public class HTMLTextBean
    extends JTextArea
    implements Serializable, PropertyChangeListener
{
    /**
     * The underlying bean that provides our htmlparser specific properties.
     */
    protected StringBean mBean;

    /**
     * Creates a new HTMLTextBean.
     * This uses an underlying StringBean and displays the text.
     */
    public HTMLTextBean()
    {
        getBean().addPropertyChangeListener(this);
    }

    /**
     * Return the minimum dimension for this visible bean.
     */
    public Dimension getMinimumSize()
    {
        FontMetrics metrics;
        int width;
        int height;

        metrics = getFontMetrics(getFont());
        width = metrics.stringWidth("Hello World");
        height =
            metrics.getLeading() + metrics.getHeight() + metrics.getDescent();

        return (new Dimension(width, height));
    }

    /**
     * Add a PropertyChangeListener to the listener list.
     * The listener is registered for all properties.
     * 

Delegates to the underlying StringBean * @param listener The PropertyChangeListener to be added. */ public void addPropertyChangeListener(PropertyChangeListener listener) { super.addPropertyChangeListener(listener); getBean().addPropertyChangeListener(listener); } /** * Remove a PropertyChangeListener from the listener list. * This removes a PropertyChangeListener that was registered for all properties. *

Delegates to the underlying StringBean * @param the PropertyChangeListener to be removed. */ public void removePropertyChangeListener(PropertyChangeListener listener) { super.addPropertyChangeListener(listener); getBean().removePropertyChangeListener(listener); } // // Properties // /** * Return the underlying bean object. * Creates a new one if it hasn't been initialized yet. * @return The StringBean this bean uses to fetch text. */ public StringBean getBean() { if (null == mBean) mBean = new StringBean(); return (mBean); } /** * Getter for property strings. *

Delegates to the underlying StringBean * @return Value of property strings. */ public String getStrings() { return (getBean().getStrings()); } /** * Getter for property links. *

Delegates to the underlying StringBean * @return Value of property links. */ public boolean getLinks() { return (getBean().getLinks()); } /** * Setter for property links. *

Delegates to the underlying StringBean * @param links New value of property links. */ public void setLinks(boolean links) { getBean().setLinks(links); } /** * Getter for property URL. *

Delegates to the underlying StringBean * @return Value of property URL. */ public String getURL() { return (getBean().getURL()); } /** * Setter for property URL. *

Delegates to the underlying StringBean * @param url New value of property URL. */ public void setURL(String url) { getBean().setURL(url); } /** * Get the current 'replace non breaking spaces' state. * @return The true if non-breaking spaces (character '\u00a0', * numeric character reference &160; or character entity reference  ) * are to be replaced with normal spaces (character '\u0020'). */ public boolean getReplaceNonBreakingSpaces() { return (getBean().getReplaceNonBreakingSpaces()); } /** * Set the 'replace non breaking spaces' state. * @param replace_space true if non-breaking spaces (character '\u00a0', * numeric character reference &160; or character entity reference  ) * are to be replaced with normal spaces (character '\u0020'). */ public void setReplaceNonBreakingSpaces(boolean replace_space) { getBean().setReplaceNonBreakingSpaces(replace_space); } /** * Get the current 'collapse whitespace' state. * If set to true this emulates the operation of browsers * in interpretting text where auser agents should collapse input white * space sequences when producing output inter-word space. * See HTML specification section 9.1 White space * http://www.w3.org/TR/html4/struct/text.html#h-9.1 * @return true if sequences of whitespace (space '\u0020', * tab '\u0009', form feed '\u000C', zero-width space '\u200B', * carriage-return '\r' and newline '\n') are to be replaced with a single * space. */ public boolean getCollapse() { return (getBean().getCollapse()); } /** * Set the current 'collapse whitespace' state. * @param collapse_whitespace If true, sequences of whitespace * will be reduced to a single space. */ public void setCollapse(boolean collapse_whitespace) { getBean().setCollapse(collapse_whitespace); } /** * Getter for property Connection. * @return Value of property Connection. */ public URLConnection getConnection() { return (getBean().getConnection()); } /** * Setter for property Connection. * @param url New value of property Connection. */ public void setConnection(URLConnection connection) { getBean().setConnection(connection); } // // PropertyChangeListener inteface // /** * Responds to changes in the underlying bean's properties. * @param event The event triggering this listener method call. */ public void propertyChange(PropertyChangeEvent event) { if (event.getPropertyName().equals(StringBean.PROP_STRINGS_PROPERTY)) { setText(getBean().getStrings()); setCaretPosition(0); } } }

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.