All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.com.ibm.as400.resource.RIFSFileListBeanInfo Maven / Gradle / Ivy

There is a newer version: 11.1
Show newest version
///////////////////////////////////////////////////////////////////////////////
//                                                                             
// JTOpen (IBM Toolbox for Java - OSS version)                              
//                                                                             
// Filename: RIFSFileListBeanInfo.java
//                                                                             
// The source code contained herein is licensed under the IBM Public License   
// Version 1.0, which has been approved by the Open Source Initiative.         
// Copyright (C) 1997-2000 International Business Machines Corporation and     
// others. All rights reserved.                                                
//                                                                             
///////////////////////////////////////////////////////////////////////////////

package com.ibm.as400.resource;

import com.ibm.as400.access.ExtendedIllegalArgumentException;
import com.ibm.as400.access.Trace;
import java.awt.Image;
import java.beans.BeanDescriptor;
import java.beans.BeanInfo;
import java.beans.PropertyDescriptor;
import java.beans.SimpleBeanInfo;
import java.util.ResourceBundle;



/**
The RIFSFileListBeanInfo class represents the bean information
for the RIFSFileList class.
@deprecated Use com.ibm.as400.access.IFSFile instead. 
**/
public class RIFSFileListBeanInfo 
extends SimpleBeanInfo
{
  private static final String copyright = "Copyright (C) 1997-2000 International Business Machines Corporation and others.";


    // Private data.
    private static final Class                  beanClass_              = RIFSFileList.class;

    private static BeanInfo[]                   additionalBeanInfo_;
    private static BeanDescriptor               beanDescriptor_;
    private static Image                        icon16_;
    private static Image                        icon32_;
    private static PropertyDescriptor[]         propertyDescriptors_;
    private static ResourceBundle               resourceBundle_;



/**
Static initializer.
**/
    static
    {
        try
        {
            // Set up the resource bundle.
            resourceBundle_ = ResourceBundle.getBundle("com.ibm.as400.resource.ResourceMRI");

            // Set up the additional bean info.
            additionalBeanInfo_ = new BeanInfo[] { new ResourceListBeanInfo() };

            // Set up the bean descriptor.
            beanDescriptor_ = new BeanDescriptor(beanClass_);

            // Set up the property descriptors.
            PropertyDescriptor path = new PropertyDescriptor("path", beanClass_);
            path.setBound(true);
            path.setConstrained(true);
            path.setDisplayName(resourceBundle_.getString("PROPERTY_PATH_NAME"));
            path.setShortDescription(resourceBundle_.getString("PROPERTY_PATH_DESCRIPTION"));

            propertyDescriptors_ = new PropertyDescriptor[] { path };

        }
        catch (Exception e)
        {
            if (Trace.isTraceOn())
                Trace.log(Trace.ERROR, "Error while loading bean info", e);
            throw new Error(e.toString());
        }
    }
    


/**
Returns the additional bean information.

@return The additional bean information.
**/
    public BeanInfo[] getAdditionalBeanInfo()
    {
        return additionalBeanInfo_;
    }


/**
Returns the bean descriptor.

@return The bean descriptor.
**/
    public BeanDescriptor getBeanDescriptor()
    {
        return beanDescriptor_;
    }



/**
Returns the icon.

@param icon The icon kind.  Possible values are:
                
  • BeanInfo.ICON_MONO_16x16
  • BeanInfo.ICON_MONO_32x32
  • BeanInfo.ICON_COLOR_16x16
  • BeanInfo.ICON_COLOR_32x32
@return The icon. **/ public Image getIcon(int icon) { switch(icon) { case BeanInfo.ICON_MONO_16x16: case BeanInfo.ICON_COLOR_16x16: if (icon16_ == null) icon16_ = loadImage("RIFSFileList16.gif"); return icon16_; case BeanInfo.ICON_MONO_32x32: case BeanInfo.ICON_COLOR_32x32: if (icon32_ == null) icon32_ = loadImage("RIFSFileList32.gif"); return icon32_; default: throw new ExtendedIllegalArgumentException("icon", ExtendedIllegalArgumentException.PARAMETER_VALUE_NOT_VALID); } } /** Returns the property descriptors. @return The property descriptors. **/ public PropertyDescriptor[] getPropertyDescriptors() { return propertyDescriptors_; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy