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

/**************************************************************************
 *
 *                          Sun Public License Notice
 *
 * The contents of this file are subject to the Sun Public License Version
 * 1.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is available at http://www.sun.com/
 *
 * The Original Code is the HTTP Javadoc Filesystem.
 * The Initial Developer of the Original Code is Jeffrey A. Keyser.
 * Portions created by Jeffrey A. Keyser are Copyright (C) 2000-2002.
 * All Rights Reserved.
 *
 * Contributor(s): Jeffrey A. Keyser.
 *
 **************************************************************************/


package org.netbeans.modules.javadoc.httpfs;

import java.beans.*;
import java.awt.Image;
import java.util.ResourceBundle;

import org.openide.util.NbBundle;
import org.openide.filesystems.FileSystem;
import org.openide.util.Utilities;


/**
 *	

Provides information about the "HTTP Javadoc Filesystem" bean.

* * @since 1.0 */ public class HTTPFileSystemBeanInfo extends SimpleBeanInfo { // Property descriptors private PropertyDescriptor[] propertyDescriptors = null; /** * Returns this bean's property descriptors. * * @since 1.0 */ public PropertyDescriptor[] getPropertyDescriptors() { if( propertyDescriptors == null ){ try { propertyDescriptors = new PropertyDescriptor[ 3 ]; // URL property propertyDescriptors[ 0 ] = new PropertyDescriptor( HTTPFileSystem.PROP_URL, HTTPFileSystem.class, "getURL", "setURL" ); // NOI18N propertyDescriptors[ 0 ].setDisplayName( ResourceUtils.getBundledString( "PROP_URLPropertyName" ) ); //NOI18N propertyDescriptors[ 0 ].setShortDescription( ResourceUtils.getBundledString( "HINT_URLPropertyName" ) ); //NOI18N propertyDescriptors[ 0 ].setBound( true ); propertyDescriptors[ 0 ].setConstrained( true ); propertyDescriptors[ 0 ].setPreferred( true ); // RefreshRate property propertyDescriptors[ 1 ] = new PropertyDescriptor( HTTPFileSystem.PROP_REFRESH_RATE, HTTPFileSystem.class, "getRefreshRate", "setRefreshRate" ); // NOI18N propertyDescriptors[ 1 ].setDisplayName( ResourceUtils.getBundledString( "PROP_RefreshRatePropertyName" ) ); //NOI18N propertyDescriptors[ 1 ].setShortDescription( ResourceUtils.getBundledString( "HINT_RefreshRatePropertyName" ) ); //NOI18N propertyDescriptors[ 1 ].setBound( true ); propertyDescriptors[ 1 ].setConstrained( true ); propertyDescriptors[ 1 ].setExpert( true ); // State property propertyDescriptors[ 2 ] = new PropertyDescriptor( HTTPFileSystem.PROP_STATE, HTTPFileSystem.class, "getState", null ); // NOI18N propertyDescriptors[ 2 ].setBound( true ); propertyDescriptors[ 2 ].setConstrained( false ); propertyDescriptors[ 2 ].setHidden( true ); } catch( IntrospectionException e ) { org.openide.ErrorManager.getDefault().notify(e); } } return propertyDescriptors; } /** * Returns this bean's superclass' BeanInfos. * * @since 1.0 */ public BeanInfo[] getAdditionalBeanInfo () { try { return new BeanInfo[] { Introspector.getBeanInfo (FileSystem.class) }; } catch (IntrospectionException ie) { if ( Boolean.getBoolean( "netbeans.debug.exceptions" ) ) { //NOI18N ie.printStackTrace( ); } return null; } } /** * Returns an icon image for this bean. * * @since 1.0 */ public Image getIcon (int kind) { switch( kind ) { case ICON_COLOR_16x16: default: return Utilities.loadImage( "org/netbeans/modules/javadoc/httpfs/resources/BeanIcon16C.gif" ); // NOI18N case ICON_COLOR_32x32: return Utilities.loadImage( "org/netbeans/modules/javadoc/httpfs/resources/BeanIcon32C.gif" ); // NOI18N case ICON_MONO_16x16: return Utilities.loadImage( "org/netbeans/modules/javadoc/httpfs/resources/BeanIcon16M.gif" ); // NOI18N case ICON_MONO_32x32: return Utilities.loadImage( "org/netbeans/modules/javadoc/httpfs/resources/BeanIcon32M.gif" ); // NOI18N } } }
... 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.