~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to debuggercore/api/src/org/netbeans/api/debugger/DebuggerInfo.java

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
3
 *
 
4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
5
 *
 
6
 * The contents of this file are subject to the terms of either the GNU
 
7
 * General Public License Version 2 only ("GPL") or the Common
 
8
 * Development and Distribution License("CDDL") (collectively, the
 
9
 * "License"). You may not use this file except in compliance with the
 
10
 * License. You can obtain a copy of the License at
 
11
 * http://www.netbeans.org/cddl-gplv2.html
 
12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
13
 * specific language governing permissions and limitations under the
 
14
 * License.  When distributing the software, include this License Header
 
15
 * Notice in each file and include the License file at
 
16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
17
 * particular file as subject to the "Classpath" exception as provided
 
18
 * by Sun in the GPL Version 2 section of the License file that
 
19
 * accompanied this code. If applicable, add the following below the
 
20
 * License Header, with the fields enclosed by brackets [] replaced by
 
21
 * your own identifying information:
 
22
 * "Portions Copyrighted [year] [name of copyright owner]"
 
23
 *
 
24
 * Contributor(s):
 
25
 *
 
26
 * The Original Software is NetBeans. The Initial Developer of the Original
 
27
 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
 
28
 * Microsystems, Inc. All Rights Reserved.
 
29
 *
 
30
 * If you wish your version of this file to be governed by only the CDDL
 
31
 * or only the GPL Version 2, indicate your decision by adding
 
32
 * "[Contributor] elects to include this software in this distribution
 
33
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
 
34
 * single choice of license, a recipient has the option to distribute
 
35
 * your version of this file under either the CDDL, the GPL Version 2 or
 
36
 * to extend the choice of license to its licensees as provided above.
 
37
 * However, if you add GPL Version 2 code and therefore, elected the GPL
 
38
 * Version 2 license, then the option applies only if the new code is
 
39
 * made subject to such option by the copyright holder.
 
40
 */
 
41
 
 
42
package org.netbeans.api.debugger;
 
43
 
 
44
import java.util.List;
 
45
 
 
46
 
 
47
/**
 
48
 * Contains information needed to start new debugging. Process of starting of
 
49
 * debugger can create one or more {@link Session} and one or more
 
50
 * {@link DebuggerEngine} and register them to {@link DebuggerManager}. For
 
51
 * more information about debugger start process see:
 
52
 * {@link DebuggerManager#startDebugging}.
 
53
 *
 
54
 * @author   Jan Jancura
 
55
 */
 
56
public final class DebuggerInfo {
 
57
 
 
58
    private Lookup lookup;
 
59
 
 
60
 
 
61
    /**
 
62
     * Creates a new instance of DebuggerInfo.
 
63
     *
 
64
     * @param typeID identification of DebuggerInfo type. Is used for 
 
65
     *      registration of external services.
 
66
     * @param services you can register additional services for this 
 
67
     *      DebuggerInfo here
 
68
     * @return returns a new instance of DebuggerInfo
 
69
     */
 
70
    public static DebuggerInfo create (
 
71
        String typeID,
 
72
        Object[] services
 
73
    ) {
 
74
        return new DebuggerInfo (
 
75
            typeID, 
 
76
            services
 
77
        );
 
78
    }
 
79
    
 
80
    private DebuggerInfo (
 
81
        String typeID,
 
82
        Object[] services
 
83
    ) {
 
84
        Object[] s = new Object [services.length + 1];
 
85
        System.arraycopy (services, 0, s, 0, services.length);
 
86
        s [s.length - 1] = this;
 
87
        lookup = new Lookup.Compound (
 
88
            new Lookup.Instance (s),
 
89
            new Lookup.MetaInf (typeID)
 
90
        );
 
91
    }
 
92
 
 
93
    /**
 
94
     * Returns type identification of this session. This parameter is used for
 
95
     * registration of additional services in Meta-inf/debugger.
 
96
     *
 
97
     * @return type identification of this session
 
98
     */
 
99
//    public String getTypeID () {
 
100
//        return typeID;
 
101
//    }
 
102
    
 
103
//    /**
 
104
//     * Returns list of services of given type.
 
105
//     *
 
106
//     * @param service a type of service to look for
 
107
//     * @return list of services of given type
 
108
//     */
 
109
//    public List lookup (Class service) {
 
110
//        return lookup.lookup (null, service);
 
111
//    }
 
112
//    
 
113
//    /**
 
114
//     * Returns one service of given type.
 
115
//     *
 
116
//     * @param service a type of service to look for
 
117
//     * @return ne service of given type
 
118
//     */
 
119
//    public Object lookupFirst (Class service) {
 
120
//        return lookup.lookupFirst (null, service);
 
121
//    }
 
122
    
 
123
    /**
 
124
     * Returns list of services of given type from given folder.
 
125
     *
 
126
     * @param service a type of service to look for
 
127
     * @return list of services of given type
 
128
     */
 
129
    public List lookup (String folder, Class service) {
 
130
        return lookup.lookup (folder, service);
 
131
    }
 
132
    
 
133
    /**
 
134
     * Returns one service of given type from given folder.
 
135
     *
 
136
     * @param service a type of service to look for
 
137
     * @return ne service of given type
 
138
     */
 
139
    public Object lookupFirst (String folder, Class service) {
 
140
        return lookup.lookupFirst (folder, service);
 
141
    }
 
142
    
 
143
    Lookup getLookup () {
 
144
        return lookup;
 
145
    }
 
146
}
 
147