Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e7cae5d3d73095f889a940073a3664db0de13847 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*******************************************************************************
 * Copyright (c) 2009 Red Hat, Inc.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Red Hat Incorporated - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.cdt.libhover;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;

import org.w3c.dom.Node;


public class ClassInfo implements Serializable {
    private static final long serialVersionUID = 1L;
    private String templateParms[] = new String[0];
    private boolean templateParmsFilled = false;
    private String className;
    private String include;
    private ArrayList<ClassInfo> baseClasses = new ArrayList<>();
    private HashMap<String, MemberInfo> members = new HashMap<>();
    public transient Node classNode;
    private ArrayList<ClassInfo> children = null;
    public ClassInfo(String className, Node classNode) {
        this.className = className;
        this.classNode = classNode;
    }
    public String getClassName() {
        return className;
    }
    public void setClassName(String newName) {
        className = newName;
    }
    public void addTemplate(ClassInfo child) {
        if (children == null) {
            children = new ArrayList<>();
        }
        children.add(child);
    }
    public boolean areTemplateParmsFilled() {
        return templateParmsFilled;
    }

    public String[] getTemplateParms() {
        return templateParms;
    }

    public void setTemplateParms(String[] templateParms) {
        templateParmsFilled = true;
        this.templateParms = templateParms;
    }

    public String getInclude() {
        return include;
    }

    public void setInclude(String include) {
        this.include = include;
    }

    public ArrayList<ClassInfo> getChildren() {
        return children;
    }

    public MemberInfo getMember(String name) {
        return members.get(name);
    }

    public void addMember(MemberInfo info) {
        String name = info.getName();
        MemberInfo member = members.get(name);
        if (member != null)
            member.addChild(info);
        else
            members.put(name, info);
    }

    public void addBaseClass(ClassInfo info) {
        baseClasses.add(info);
    }
}

Back to the top