~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/GEObjectImpl.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;
 
33
 
 
34
/**
 
35
 *
 
36
 */
 
37
public abstract class GEObjectImpl implements java.io.Serializable, GEObject, Cloneable {
 
38
 
 
39
    /* parent object. */
 
40
private GEObjectImpl parent;
 
41
    /* name of the object. */
 
42
    private String name;
 
43
 
 
44
    public GEObjectImpl() {
 
45
    }
 
46
 
 
47
    public GEObjectImpl(String name) {
 
48
        setName(name);
 
49
    }
 
50
 
 
51
    /**
 
52
     * Creates a new instance of GEObjectImpl
 
53
     */
 
54
    public GEObjectImpl(GEObjectImpl parent) {
 
55
        this(parent, null);
 
56
    }
 
57
 
 
58
    public GEObjectImpl(GEObjectImpl parent, String name) {
 
59
        setParent(parent);
 
60
        setName(name);
 
61
    }
 
62
 
 
63
    /**
 
64
     * Getter for property name.
 
65
     * @return Value of property name.
 
66
     */
 
67
    public String getName() {
 
68
        return name;
 
69
    }
 
70
 
 
71
    /**
 
72
     * Setter for property name.
 
73
     * @param name New value of property name.
 
74
     */
 
75
    public void setName(java.lang.String name) {
 
76
        this.name = name;
 
77
    }
 
78
 
 
79
    /**
 
80
     * Getter for property parent.
 
81
     * @return Value of property parent.
 
82
     */
 
83
    public GEObject getParent() {
 
84
        return parent;
 
85
    }
 
86
 
 
87
    /**
 
88
     * Setter for property parent.
 
89
     * @param parent New value of property parent.
 
90
     */
 
91
    public void setParent(GEObjectImpl parent) {
 
92
        this.parent = parent;
 
93
    }
 
94
 
 
95
    public String getPathName() {
 
96
        if (parent == null) {
 
97
            return name;
 
98
        } else {
 
99
            return parent.getName() + "/" + name;
 
100
        }
 
101
    }
 
102
 
 
103
    public GEObjectImpl getRoot() {
 
104
        if (parent != null) {
 
105
            return parent.getRoot();
 
106
        } else {
 
107
            return this;
 
108
        }
 
109
    }
 
110
}
 
 
b'\\ No newline at end of file'