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

org.richfaces.cdk.templatecompiler.builder.model.JavaLanguageElement Maven / Gradle / Ivy

The newest version!
/**
 * License Agreement.
 *
 * Rich Faces - Natural Ajax for Java Server Faces (JSF)
 *
 * Copyright (C) 2007 Exadel, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License version 2.1 as published by the Free Software Foundation.
 *
 * This library 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 this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
 */
package org.richfaces.cdk.templatecompiler.builder.model;

import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import java.util.TreeSet;

import com.google.common.collect.Iterables;

/**
 * @author Maksim Kaszynski
 */
public class JavaLanguageElement implements RequireImports {
    private boolean hidden = false;
    private Set modifiers = new TreeSet();
    private List comments = new ArrayList();
    private List annotations = new ArrayList();
    private String name;

    public JavaLanguageElement() {
        super();
    }

    public JavaLanguageElement(String name) {
        super();
        this.name = name;
    }

    /**
     * 

*

* * @return the hidden */ public boolean isHidden() { return this.hidden; } /** *

*

* * @param hidden the hidden to set */ public void setHidden(boolean hidden) { this.hidden = hidden; } public Set getModifiers() { return modifiers; } public List getAnnotations() { return annotations; } public List getComments() { return comments; } public String getName() { return name; } public void setName(String name) { this.name = name; } public void addModifier(JavaModifier modifier) { modifiers.add(modifier); } public void addAnnotation(JavaAnnotation annotation) { annotations.add(annotation); } public void addComment(JavaComment comment) { comments.add(comment); } /* * (non-Javadoc) * * @see org.richfaces.cdk.templatecompiler.builder.model.RequireImports#getRequiredImports() */ @Override public Iterable getRequiredImports() { Iterable imports = Iterables .concat(Iterables.transform(getAnnotations(), RequireImports.IMPORTS_TRANSFORM)); return imports; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy