~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/jgdi/src/com/sun/grid/jgdi/configuration/reflect/DefaultListPropertyDescriptor.java

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*___INFO__MARK_BEGIN__*/
 
2
/*************************************************************************
 
3
 *
 
4
 *  The Contents of this file are made available subject to the terms of
 
5
 *  the Sun Industry Standards Source License Version 1.2
 
6
 *
 
7
 *  Sun Microsystems Inc., March, 2001
 
8
 *
 
9
 *
 
10
 *  Sun Industry Standards Source License Version 1.2
 
11
 *  =================================================
 
12
 *  The contents of this file are subject to the Sun Industry Standards
 
13
 *  Source License Version 1.2 (the "License"); You may not use this file
 
14
 *  except in compliance with the License. You may obtain a copy of the
 
15
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
16
 *
 
17
 *  Software provided under this License is provided on an "AS IS" basis,
 
18
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
19
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
20
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
21
 *  See the License for the specific provisions governing your rights and
 
22
 *  obligations concerning the Software.
 
23
 *
 
24
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
25
 *
 
26
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
27
 *
 
28
 *   All Rights Reserved.
 
29
 *
 
30
 ************************************************************************/
 
31
/*___INFO__MARK_END__*/
 
32
package com.sun.grid.jgdi.configuration.reflect;
 
33
 
 
34
import com.sun.grid.jgdi.configuration.reflect.*;
 
35
import java.lang.reflect.*;
 
36
 
 
37
/**
 
38
 *
 
39
 */
 
40
public class DefaultListPropertyDescriptor extends ListPropertyDescriptor {
 
41
    
 
42
    private Method addMethod;
 
43
    private Method countMethod;
 
44
    private Method getMethod;
 
45
    private Method setMethod;
 
46
    private Method removeMethod;
 
47
    private Method removeValueMethod;
 
48
    private Method removeAllMethod;
 
49
    
 
50
    /** Creates a new instance of DefaultListPropertyDescriptor */
 
51
    public DefaultListPropertyDescriptor(Class beanClass, String propertyName,
 
52
            Class propertyType, String cullType,
 
53
            int cullFieldName, boolean browseable, boolean readOnly, boolean configurable) {
 
54
        super( beanClass, propertyName, propertyType, cullType, cullFieldName, browseable, readOnly, configurable);
 
55
        
 
56
        countMethod = findMethod( "get", "Count", null );
 
57
        getMethod = findMethod( "get", new Class[] { Integer.TYPE } );
 
58
//      if ( !readOnly ) {
 
59
        addMethod = findMethod( "add", new Class[] { propertyType } );
 
60
        setMethod = findMethod( "set", new Class[] { Integer.TYPE, propertyType } );
 
61
        removeMethod = findMethod( "remove", new Class[] { Integer.TYPE } );
 
62
        removeValueMethod = findMethod( "remove", new Class[] { propertyType } );
 
63
        removeAllMethod = findMethod( "removeAll", null );
 
64
//      }
 
65
    }
 
66
    
 
67
    
 
68
    public void add(Object bean, Object value) {
 
69
        invoke( addMethod, bean, new Object[] { value } );
 
70
    }
 
71
    
 
72
    public Object get(Object bean, int index) {
 
73
        return invoke( getMethod, bean, new Object[] { new Integer(index) } );
 
74
    }
 
75
    
 
76
    public int getCount(Object bean) {
 
77
        return ((Integer)invoke( countMethod, bean, null )).intValue();
 
78
    }
 
79
    
 
80
    public Object remove(Object bean, int index) {
 
81
        return invoke( removeMethod, bean, new Object[] { new Integer(index) } );
 
82
    }
 
83
    
 
84
    public boolean remove(Object bean, Object value) {
 
85
        return ((Boolean)invoke( removeValueMethod,  bean , new Object[] { value } )).booleanValue();
 
86
    }
 
87
    
 
88
    public void removeAll(Object bean) {
 
89
        invoke( removeAllMethod, bean, null );
 
90
    }
 
91
    
 
92
    public void set(Object bean, int index, Object value) {
 
93
        invoke( setMethod, bean, new Object[] { new Integer(index), value } );
 
94
    }
 
95
    
 
96
}