com.googlecode.gmaps4jsf.jsfplugin.digester.Component.java Source code

Java tutorial

Introduction

Here is the source code for com.googlecode.gmaps4jsf.jsfplugin.digester.Component.java

Source

/*
 * Copyright 2007 The Apache Software Foundation.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.googlecode.gmaps4jsf.jsfplugin.digester;

import java.util.Vector;

import org.apache.commons.lang.StringUtils;

/**
 * @author Latest modification by $Author: cagatay_civici $
 * @version $Revision: 361 $ $Date: 2007-06-10 19:12:06 +0300 (Sun, 10 Jun 2007) $
 */
public class Component {

    private String tag;
    private String tagClass;
    private String componentClass;
    private String parent;
    private String componentType;
    private String componentFamily;
    private String rendererType;
    private String rendererClass;
    private Vector attributes;

    public Component() {
        attributes = new Vector();
    }

    public void addAttribute(Attribute attribute) {
        attributes.add(attribute);
    }

    public String getTag() {
        return tag;
    }

    public void setTag(String tag) {
        this.tag = tag;
    }

    public String getTagClass() {
        return tagClass;
    }

    public void setTagClass(String tagClass) {
        this.tagClass = tagClass;
    }

    public String getParent() {
        return parent;
    }

    public void setParent(String parent) {
        this.parent = parent;
    }

    public Vector getAttributes() {
        return attributes;
    }

    public void setAttributes(Vector attributes) {
        this.attributes = attributes;
    }

    public String getComponentType() {
        return componentType;
    }

    public void setComponentType(String componentType) {
        this.componentType = componentType;
    }

    public String getComponentFamily() {
        return componentFamily;
    }

    public void setComponentFamily(String componentFamily) {
        this.componentFamily = componentFamily;
    }

    public String getRendererType() {
        return rendererType;
    }

    public void setRendererType(String rendererType) {
        this.rendererType = rendererType;
    }

    public String getRendererClass() {
        return rendererClass;
    }

    public void setRendererClass(String rendererClass) {
        this.rendererClass = rendererClass;
    }

    public String getComponentClass() {
        return componentClass;
    }

    public void setComponentClass(String componentClass) {
        this.componentClass = componentClass;
    }

    /**
     * Gives the short name of the component
     * e.g. com.googlecode.gmaps4jsf.component.Slider will return Slider
     */
    public String getComponentShortName() {
        String[] list = componentClass.split("\\.");
        return list[list.length - 1];
    }

    /**
     * Gives the short name of the parent
     * e.g. javax.faces.component.UIComponentBase will return UIComponentBase
     */
    public String getParentShortName() {
        String[] list = parent.split("\\.");
        return list[list.length - 1];
    }

    /**
     * Returns the parent package folder
     * e.g. com.googlecode.gmaps4jsf.component.tabview.Tab will return "tabview"
     */
    public String getParentPackagePath() {
        String[] list = getTagClass().split("\\.");
        return list[list.length - 2];
    }

    /**
     * Returns the parent package folder
     * e.g. com.googlecode.gmaps4jsf.component.tabview.Tab will return "com.googlecode.gmaps4jsf.component.tabview"
     */
    public String getPackage() {
        return StringUtils.substringBeforeLast(getTagClass(), ".");
    }
}