NetServerPrintShareBeanInfo.java :  » Net » jtopen-7.0 » com » ibm » as400 » access » Java Open Source

Java Open Source » Net » jtopen 7.0 
jtopen 7.0 » com » ibm » as400 » access » NetServerPrintShareBeanInfo.java
///////////////////////////////////////////////////////////////////////////////
//                                                                             
// JTOpen (IBM Toolbox for Java - OSS version)                              
//                                                                             
// Filename: NetServerPrintShareBeanInfo.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-2001 International Business Machines Corporation and     
// others. All rights reserved.                                                
//                                                                             
///////////////////////////////////////////////////////////////////////////////

package com.ibm.as400.access;

import com.ibm.as400.resource.ResourceBeanInfo;
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 NetServerPrintShareBeanInfo class represents the bean information
for the NetServerPrintShare class.
 @deprecated This class may be removed in a future release.
**/
public class NetServerPrintShareBeanInfo 
extends SimpleBeanInfo
{
  private static final String copyright = "Copyright (C) 1997-2001 International Business Machines Corporation and others.";


  // Private data.
  private static final Class                  beanClass_    = NetServerPrintShare.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.access.MRI2");

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

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

      // Set up the property descriptors.
      PropertyDescriptor name = new PropertyDescriptor("name", beanClass_);
      name.setBound(true);
      name.setConstrained(false); // we do not allow veto's
      name.setDisplayName(resourceBundle_.getString("PROP_NAME_NAME"));
      name.setShortDescription(resourceBundle_.getString("PROP_DESC_NAME"));

      propertyDescriptors_ = new PropertyDescriptor[] { name };

    }
    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 index of the default property.      
   @return The index to the default property.    
   **/
  public int getDefaultPropertyIndex()    
  {        
    return 0;    
  }



  /**
   Returns the property descriptors.

   @return The property descriptors.
   **/
  public PropertyDescriptor[] getPropertyDescriptors()
  {
    return propertyDescriptors_;
  }



/// TBD - No icons yet.  Revisit this in the next release.
////**
///Returns the icon.
///
///@param iconKind The icon kind.  Possible values are:
///                <ul>
///                <li>BeanInfo.ICON_MONO_16x16
///                <li>BeanInfo.ICON_MONO_32x32
///                <li>BeanInfo.ICON_COLOR_16x16
///                <li>BeanInfo.ICON_COLOR_32x32
///                </ul>
///@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("NetServerPrintShare16.gif");
///                return icon16_;
///
///            case BeanInfo.ICON_MONO_32x32:
///            case BeanInfo.ICON_COLOR_32x32:
///                if (icon32_ == null)
///                    icon32_ = loadImage("NetServerPrintShare32.gif");
///                return icon32_;
///
///            default:
///            throw new ExtendedIllegalArgumentException("icon", ExtendedIllegalArgumentException.PARAMETER_VALUE_NOT_VALID);
///        }
///    }

}

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.