All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pascal.taie.language.classes.ClassMember Maven / Gradle / Ivy

The newest version!
/*
 * Tai-e: A Static Analysis Framework for Java
 *
 * Copyright (C) 2022 Tian Tan 
 * Copyright (C) 2022 Yue Li 
 *
 * This file is part of Tai-e.
 *
 * Tai-e is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation, either version 3
 * of the License, or (at your option) any later version.
 *
 * Tai-e is distributed in the hope that it will be useful,but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
 * Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Tai-e. If not, see .
 */

package pascal.taie.language.classes;

import pascal.taie.language.annotation.Annotated;
import pascal.taie.language.annotation.Annotation;
import pascal.taie.language.annotation.AnnotationHolder;

import javax.annotation.Nullable;
import java.io.Serializable;
import java.util.Collection;
import java.util.Set;

public abstract class ClassMember implements Annotated, Serializable {

    protected final JClass declaringClass;

    protected final String name;

    protected final Set modifiers;

    protected final AnnotationHolder annotationHolder;

    protected String signature;

    // TODO: source location

    protected ClassMember(JClass declaringClass, String name,
                          Set modifiers,
                          AnnotationHolder annotationHolder) {
        this.declaringClass = declaringClass;
        this.name = name;
        this.modifiers = modifiers;
        this.annotationHolder = annotationHolder;
    }

    /**
     * @return the declaring class of the class member.
     */
    public JClass getDeclaringClass() {
        return declaringClass;
    }

    public String getName() {
        return name;
    }

    public String getSignature() {
        return signature;
    }

    public Set getModifiers() {
        return modifiers;
    }

    public boolean isPublic() {
        return Modifier.hasPublic(modifiers);
    }

    public boolean isProtected() {
        return Modifier.hasProtected(modifiers);
    }

    public boolean isPrivate() {
        return Modifier.hasPrivate(modifiers);
    }

    public boolean isStatic() {
        return Modifier.hasStatic(modifiers);
    }

    public boolean isApplication() {
        return declaringClass.isApplication();
    }

    @Override
    public boolean hasAnnotation(String annotationType) {
        return annotationHolder.hasAnnotation(annotationType);
    }

    @Override
    @Nullable
    public Annotation getAnnotation(String annotationType) {
        return annotationHolder.getAnnotation(annotationType);
    }

    @Override
    public Collection getAnnotations() {
        return annotationHolder.getAnnotations();
    }

    @Override
    public String toString() {
        return signature;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy