/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common
* Development and Distribution License("CDDL") (collectively, the
* "License"). You may not use this file except in compliance with the
* License. You can obtain a copy of the License at
* http://www.netbeans.org/cddl-gplv2.html
* or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
* specific language governing permissions and limitations under the
* License. When distributing the software, include this License Header
* Notice in each file and include the License file at
* nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the GPL Version 2 section of the License file that
* accompanied this code. If applicable, add the following below the
* License Header, with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* Contributor(s):
*
* The Original Software is NetBeans. The Initial Developer of the Original
* Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
* Microsystems, Inc. All Rights Reserved.
*
* If you wish your version of this file to be governed by only the CDDL
* or only the GPL Version 2, indicate your decision by adding
* "[Contributor] elects to include this software in this distribution
* under the [CDDL or GPL Version 2] license." If you do not indicate a
* single choice of license, a recipient has the option to distribute
* your version of this file under either the CDDL, the GPL Version 2 or
* to extend the choice of license to its licensees as provided above.
* However, if you add GPL Version 2 code and therefore, elected the GPL
* Version 2 license, then the option applies only if the new code is
* made subject to such option by the copyright holder.
*/
package org.netbeans.modules.visualweb.faces.dt_1_2.component;
import java.awt.Image;
import java.beans.BeanDescriptor;
import java.beans.BeanInfo;
import java.beans.IntrospectionException;
import java.beans.PropertyDescriptor;
import java.util.Locale;
import java.util.List;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.ResourceBundle;
import com.sun.rave.designtime.CategoryDescriptor;
import com.sun.rave.designtime.Constants;
import com.sun.rave.designtime.faces.FacetDescriptor;
import com.sun.rave.designtime.markup.AttributeDescriptor;
import org.netbeans.modules.visualweb.faces.dt.HtmlBeanInfoBase;
import org.netbeans.modules.visualweb.faces.dt.BeanDescriptorBase;
import org.netbeans.modules.visualweb.faces.dt.PropertyDescriptorBase;
public abstract class UIMessagesBeanInfoBase extends UIComponentBeanInfoBase {
protected static ResourceBundle resources =
ResourceBundle.getBundle("org.netbeans.modules.visualweb.faces.dt_1_2.component.Bundle", Locale.getDefault(), UIMessagesBeanInfoBase.class.getClassLoader());
public UIMessagesBeanInfoBase() {
beanClass = javax.faces.component.UIMessages.class;
}
private PropertyDescriptor[] propertyDescriptors;
public PropertyDescriptor[] getPropertyDescriptors() {
if (propertyDescriptors != null) {
return propertyDescriptors;
}
AttributeDescriptor attrib = null;
try {
PropertyDescriptor prop_globalOnly = new PropertyDescriptorBase("globalOnly",beanClass,"isGlobalOnly","setGlobalOnly");
prop_globalOnly.setDisplayName(resources.getString("UIMessages_globalOnly_DisplayName"));
prop_globalOnly.setShortDescription(resources.getString("UIMessages_globalOnly_Description"));
prop_globalOnly.setExpert(false);
prop_globalOnly.setHidden(false);
prop_globalOnly.setPreferred(false);
attrib = new AttributeDescriptor("globalOnly",false,"false",true);
prop_globalOnly.setValue(Constants.PropertyDescriptor.ATTRIBUTE_DESCRIPTOR,attrib);
prop_globalOnly.setValue(Constants.PropertyDescriptor.CATEGORY,com.sun.rave.designtime.base.CategoryDescriptors.APPEARANCE);
PropertyDescriptor prop_showDetail = new PropertyDescriptorBase("showDetail",beanClass,"isShowDetail","setShowDetail");
prop_showDetail.setDisplayName(resources.getString("UIMessages_showDetail_DisplayName"));
prop_showDetail.setShortDescription(resources.getString("UIMessages_showDetail_Description"));
prop_showDetail.setExpert(false);
prop_showDetail.setHidden(false);
prop_showDetail.setPreferred(false);
attrib = new AttributeDescriptor("showDetail",false,"false",true);
prop_showDetail.setValue(Constants.PropertyDescriptor.ATTRIBUTE_DESCRIPTOR,attrib);
prop_showDetail.setValue(Constants.PropertyDescriptor.CATEGORY,com.sun.rave.designtime.base.CategoryDescriptors.APPEARANCE);
PropertyDescriptor prop_showSummary = new PropertyDescriptorBase("showSummary",beanClass,"isShowSummary","setShowSummary");
prop_showSummary.setDisplayName(resources.getString("UIMessages_showSummary_DisplayName"));
prop_showSummary.setShortDescription(resources.getString("UIMessages_showSummary_Description"));
prop_showSummary.setExpert(false);
prop_showSummary.setHidden(false);
prop_showSummary.setPreferred(false);
attrib = new AttributeDescriptor("showSummary",false,"true",true);
prop_showSummary.setValue(Constants.PropertyDescriptor.ATTRIBUTE_DESCRIPTOR,attrib);
prop_showSummary.setValue(Constants.PropertyDescriptor.CATEGORY,com.sun.rave.designtime.base.CategoryDescriptors.APPEARANCE);
List<PropertyDescriptor> propertyDescriptorList = new ArrayList<PropertyDescriptor>();
propertyDescriptorList.add(prop_globalOnly);
propertyDescriptorList.add(prop_showDetail);
propertyDescriptorList.add(prop_showSummary);
propertyDescriptorList.addAll(Arrays.asList(super.getPropertyDescriptors()));
propertyDescriptors = propertyDescriptorList.toArray(new PropertyDescriptor[propertyDescriptorList.size()]);
return propertyDescriptors;
} catch (IntrospectionException e) {
e.printStackTrace();
return null;
}
}
}
|