Package org.eclipse.jst.jsf.designtime.internal.view.mapping.viewmapping

Examples of org.eclipse.jst.jsf.designtime.internal.view.mapping.viewmapping.ClassTypeInfo_


     */
    public void addTagToViewObjectMapping(final String tagName,
            final ClassTypeInfo typeInfo, final String minJSFVersion,
            final String minLibVersion)
    {
        final ClassTypeInfo_ metadata = _mapper.mapToMetadata(typeInfo);

        if (metadata != null)
        {
            final TagToViewObjectMapping viewMapping =
                ComponentMappingFactory.eINSTANCE.createTagToViewObjectMapping();
View Full Code Here


     * <!-- end-user-doc -->
     * @generated
     */
    public NotificationChain basicSetTypeInfo(ClassTypeInfo_ newTypeInfo, NotificationChain msgs)
    {
        ClassTypeInfo_ oldTypeInfo = typeInfo;
        typeInfo = newTypeInfo;
        if (eNotificationRequired())
        {
            ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ComponentMappingPackage.TAG_TO_VIEW_OBJECT_MAPPING__TYPE_INFO, oldTypeInfo, newTypeInfo);
            if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here

TOP

Related Classes of org.eclipse.jst.jsf.designtime.internal.view.mapping.viewmapping.ClassTypeInfo_

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.