This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 123003
Collapse All | Expand All

(-)web/jsf/src/org/netbeans/modules/web/jsf/impl/facesmodel/DescriptionGroupImpl.java (-1 / +1 lines)
Lines 54-60 Link Here
54
public abstract class DescriptionGroupImpl extends JSFConfigComponentImpl implements DescriptionGroup {
54
public abstract class DescriptionGroupImpl extends JSFConfigComponentImpl implements DescriptionGroup {
55
    
55
    
56
    protected static final List<String> DESCRIPTION_GROUP_SORTED_ELEMENTS = new ArrayList();
56
    protected static final List<String> DESCRIPTION_GROUP_SORTED_ELEMENTS = new ArrayList();
57
    { 
57
    static { 
58
        DESCRIPTION_GROUP_SORTED_ELEMENTS.add(JSFConfigQNames.DESCRIPTION.getLocalName());
58
        DESCRIPTION_GROUP_SORTED_ELEMENTS.add(JSFConfigQNames.DESCRIPTION.getLocalName());
59
        DESCRIPTION_GROUP_SORTED_ELEMENTS.add(JSFConfigQNames.DISPLAY_NAME.getLocalName());
59
        DESCRIPTION_GROUP_SORTED_ELEMENTS.add(JSFConfigQNames.DISPLAY_NAME.getLocalName());
60
        DESCRIPTION_GROUP_SORTED_ELEMENTS.add(JSFConfigQNames.ICON.getLocalName());
60
        DESCRIPTION_GROUP_SORTED_ELEMENTS.add(JSFConfigQNames.ICON.getLocalName());
(-)web/jsf/src/org/netbeans/modules/web/jsf/impl/facesmodel/IconImpl.java (-1 / +1 lines)
Lines 52-58 Link Here
52
 */
52
 */
53
public class IconImpl extends JSFConfigComponentImpl implements Icon{
53
public class IconImpl extends JSFConfigComponentImpl implements Icon{
54
    protected static final List<String> SORTED_ELEMENTS = new ArrayList();
54
    protected static final List<String> SORTED_ELEMENTS = new ArrayList();
55
    {
55
    static {
56
        SORTED_ELEMENTS.add(JSFConfigQNames.SMALL_ICON.getLocalName());
56
        SORTED_ELEMENTS.add(JSFConfigQNames.SMALL_ICON.getLocalName());
57
        SORTED_ELEMENTS.add(JSFConfigQNames.LARGE_ICON.getLocalName());
57
        SORTED_ELEMENTS.add(JSFConfigQNames.LARGE_ICON.getLocalName());
58
    }
58
    }
(-)web/jsf/src/org/netbeans/modules/web/jsf/impl/facesmodel/LocaleConfigImpl.java (-1 / +1 lines)
Lines 57-63 Link Here
57
public class LocaleConfigImpl extends JSFConfigComponentImpl implements LocaleConfig {
57
public class LocaleConfigImpl extends JSFConfigComponentImpl implements LocaleConfig {
58
    
58
    
59
    protected static final List<String> SORTED_ELEMENTS = new ArrayList<String>();
59
    protected static final List<String> SORTED_ELEMENTS = new ArrayList<String>();
60
    { 
60
    static { 
61
        SORTED_ELEMENTS.add(JSFConfigQNames.DEFAULT_LOCALE.getLocalName());
61
        SORTED_ELEMENTS.add(JSFConfigQNames.DEFAULT_LOCALE.getLocalName());
62
        SORTED_ELEMENTS.add(JSFConfigQNames.SUPPORTED_LOCALE.getLocalName());
62
        SORTED_ELEMENTS.add(JSFConfigQNames.SUPPORTED_LOCALE.getLocalName());
63
    }
63
    }
(-)web/jsf/src/org/netbeans/modules/web/jsf/impl/facesmodel/ManagedBeanImpl.java (-1 / +1 lines)
Lines 61-67 Link Here
61
    private ManagedBean.Scope beanScope;
61
    private ManagedBean.Scope beanScope;
62
    
62
    
63
    protected static final List<String> SORTED_ELEMENTS = new ArrayList<String>();
63
    protected static final List<String> SORTED_ELEMENTS = new ArrayList<String>();
64
    {
64
    static {
65
        SORTED_ELEMENTS.addAll(DescriptionGroupImpl.DESCRIPTION_GROUP_SORTED_ELEMENTS);
65
        SORTED_ELEMENTS.addAll(DescriptionGroupImpl.DESCRIPTION_GROUP_SORTED_ELEMENTS);
66
        SORTED_ELEMENTS.add(JSFConfigQNames.MANAGED_BEAN_NAME.getLocalName());
66
        SORTED_ELEMENTS.add(JSFConfigQNames.MANAGED_BEAN_NAME.getLocalName());
67
        SORTED_ELEMENTS.add(JSFConfigQNames.MANAGED_BEAN_CLASS.getLocalName());
67
        SORTED_ELEMENTS.add(JSFConfigQNames.MANAGED_BEAN_CLASS.getLocalName());
(-)web/jsf/src/org/netbeans/modules/web/jsf/impl/facesmodel/NavigationCaseImpl.java (-1 / +1 lines)
Lines 54-60 Link Here
54
public class NavigationCaseImpl extends DescriptionGroupImpl implements NavigationCase{
54
public class NavigationCaseImpl extends DescriptionGroupImpl implements NavigationCase{
55
    
55
    
56
    protected static final List<String> NAVIGATION_CASE_SORTED_ELEMENTS = new ArrayList();
56
    protected static final List<String> NAVIGATION_CASE_SORTED_ELEMENTS = new ArrayList();
57
    {
57
    static {
58
        NAVIGATION_CASE_SORTED_ELEMENTS.addAll(DescriptionGroupImpl.DESCRIPTION_GROUP_SORTED_ELEMENTS);
58
        NAVIGATION_CASE_SORTED_ELEMENTS.addAll(DescriptionGroupImpl.DESCRIPTION_GROUP_SORTED_ELEMENTS);
59
        NAVIGATION_CASE_SORTED_ELEMENTS.add(JSFConfigQNames.FROM_ACTION.getLocalName());
59
        NAVIGATION_CASE_SORTED_ELEMENTS.add(JSFConfigQNames.FROM_ACTION.getLocalName());
60
        NAVIGATION_CASE_SORTED_ELEMENTS.add(JSFConfigQNames.FROM_OUTCOME.getLocalName());
60
        NAVIGATION_CASE_SORTED_ELEMENTS.add(JSFConfigQNames.FROM_OUTCOME.getLocalName());
(-)web/jsf/src/org/netbeans/modules/web/jsf/impl/facesmodel/NavigationRuleImpl.java (-1 / +1 lines)
Lines 56-62 Link Here
56
public class NavigationRuleImpl extends DescriptionGroupImpl implements NavigationRule{
56
public class NavigationRuleImpl extends DescriptionGroupImpl implements NavigationRule{
57
    
57
    
58
    protected static final List<String> NAVIGATION_RULE_SORTED_ELEMENTS = new ArrayList();
58
    protected static final List<String> NAVIGATION_RULE_SORTED_ELEMENTS = new ArrayList();
59
    {
59
    static {
60
        NAVIGATION_RULE_SORTED_ELEMENTS.addAll(DescriptionGroupImpl.DESCRIPTION_GROUP_SORTED_ELEMENTS);
60
        NAVIGATION_RULE_SORTED_ELEMENTS.addAll(DescriptionGroupImpl.DESCRIPTION_GROUP_SORTED_ELEMENTS);
61
        NAVIGATION_RULE_SORTED_ELEMENTS.add(JSFConfigQNames.FROM_VIEW_ID.getLocalName());
61
        NAVIGATION_RULE_SORTED_ELEMENTS.add(JSFConfigQNames.FROM_VIEW_ID.getLocalName());
62
        NAVIGATION_RULE_SORTED_ELEMENTS.add(JSFConfigQNames.NAVIGATION_CASE.getLocalName());
62
        NAVIGATION_RULE_SORTED_ELEMENTS.add(JSFConfigQNames.NAVIGATION_CASE.getLocalName());
(-)web/jsf/src/org/netbeans/modules/web/jsf/impl/facesmodel/ResourceBundleImpl.java (-1 / +1 lines)
Lines 50-56 Link Here
50
public class ResourceBundleImpl extends DescriptionGroupImpl implements ResourceBundle {
50
public class ResourceBundleImpl extends DescriptionGroupImpl implements ResourceBundle {
51
51
52
    protected static final List<String> RESOURCE_BUNDLE_SORTED_ELEMENTS = new ArrayList<String>();
52
    protected static final List<String> RESOURCE_BUNDLE_SORTED_ELEMENTS = new ArrayList<String>();
53
    {
53
    static {
54
        RESOURCE_BUNDLE_SORTED_ELEMENTS.addAll(DescriptionGroupImpl.DESCRIPTION_GROUP_SORTED_ELEMENTS);
54
        RESOURCE_BUNDLE_SORTED_ELEMENTS.addAll(DescriptionGroupImpl.DESCRIPTION_GROUP_SORTED_ELEMENTS);
55
        RESOURCE_BUNDLE_SORTED_ELEMENTS.add(JSFConfigQNames.BASE_NAME.getLocalName());
55
        RESOURCE_BUNDLE_SORTED_ELEMENTS.add(JSFConfigQNames.BASE_NAME.getLocalName());
56
        RESOURCE_BUNDLE_SORTED_ELEMENTS.add(JSFConfigQNames.VAR.getLocalName());
56
        RESOURCE_BUNDLE_SORTED_ELEMENTS.add(JSFConfigQNames.VAR.getLocalName());

Return to bug 123003