Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: b7e33d03cb6d2d36c2f14707ad24d3b4384efd7d (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                 



                                                                                 





                       





                                                                       
                                                  
 




                                                                                                
                         








                                                

     
/*******************************************************************************
 * Copyright (c) 2001, 2008 Oracle Corporation and others.
 * 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:
 *     Oracle Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jst.jsf.common.runtime.internal.model.decorator;

import org.eclipse.jst.jsf.common.runtime.internal.model.component.ComponentInfo;

/**
 * Validator decorator.
 * 
 * @author cbateman
 *
 */
public class ValidatorDecorator extends ComponentDecorator {
    /**
     * 
     */
    private static final long serialVersionUID = -2898015711621314782L;

    private final ValidatorTypeInfo     _typeInfo;

    /**
     * @param decorates
     * @param typeInfo
     */
    public ValidatorDecorator(final ComponentInfo decorates, final ValidatorTypeInfo typeInfo) {
        super(decorates);
        _typeInfo = typeInfo;
    }

    /**
     * @return the validator's type info
     */
    public final ValidatorTypeInfo getTypeInfo()
    {
        return _typeInfo;
    }
}

Back to the top