~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/ListPropertyDescriptor.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.Util;
 
35
import com.sun.grid.jgdi.configuration.*;
 
36
import com.sun.grid.jgdi.configuration.reflect.*;
 
37
 
 
38
/**
 
39
 *
 
40
 */
 
41
public abstract class ListPropertyDescriptor extends PropertyDescriptor {
 
42
    
 
43
    boolean browsable;
 
44
    
 
45
    /** Creates a new instance of ListPropertyDescriptor */
 
46
    public ListPropertyDescriptor(Class beanClass, String propertyName,
 
47
            Class propertyType, String cullType,
 
48
            int cullFieldName, boolean browseable, boolean readOnly, boolean configurable ) {
 
49
        super( beanClass, propertyName, propertyType, cullType, cullFieldName, readOnly, configurable);
 
50
        setBrowsable(browseable);
 
51
    }
 
52
    
 
53
    
 
54
    
 
55
    public abstract int getCount( Object bean );
 
56
    public abstract Object get( Object bean, int index );
 
57
    public abstract void add( Object bean, Object value );
 
58
    public abstract void set( Object bean, int index, Object value );
 
59
    public abstract Object remove( Object bean, int index );
 
60
    public abstract boolean remove( Object bean, Object value );
 
61
    public abstract void removeAll( Object boean );
 
62
    
 
63
    public void clone(Object srcBean, Object targetBean) {
 
64
        
 
65
        int count = getCount( srcBean );
 
66
        Object srcValue = null;
 
67
        
 
68
        for( int i = 0; i < count; i++ ) {
 
69
            srcValue = get( srcBean, i );
 
70
            if( propertyType.isPrimitive() ||
 
71
                    propertyType.equals( String.class ) ) {
 
72
                add( targetBean, srcValue );
 
73
            } else {
 
74
                
 
75
                ClassDescriptor cd = Util.getDescriptor( propertyType );
 
76
                if( cd == null ) {
 
77
                    throw new IllegalArgumentException( "Can't clone property of type " + propertyType.getName() );
 
78
                }
 
79
                add( targetBean, cd.clone( srcValue ) );
 
80
            }
 
81
            
 
82
        }
 
83
    }
 
84
    
 
85
    public String toString(Object obj, int index) {
 
86
        Object value = get(obj,index);
 
87
        if(value == null) {
 
88
            return "null";
 
89
        } else {
 
90
            return value.toString();
 
91
        }
 
92
    }
 
93
    
 
94
}