001/*
002 * (C) Copyright 2011 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Anahide Tchertchian
016 */
017package org.nuxeo.ecm.platform.forms.layout.descriptors;
018
019import org.nuxeo.common.xmap.annotation.XContent;
020import org.nuxeo.common.xmap.annotation.XNode;
021import org.nuxeo.common.xmap.annotation.XObject;
022import org.nuxeo.ecm.platform.forms.layout.api.WidgetReference;
023import org.nuxeo.ecm.platform.forms.layout.api.impl.WidgetReferenceImpl;
024
025/**
026 * Descriptor for a widget reference with a row.
027 * <p>
028 * Makes it possible to reference a category on widget.
029 *
030 * @since 5.5
031 */
032@XObject("widget")
033public class WidgetReferenceDescriptor {
034
035    @XNode("@category")
036    String category;
037
038    @XContent
039    String name;
040
041    public String getCategory() {
042        return category;
043    }
044
045    public String getName() {
046        if (name != null) {
047            String result = name.trim();
048            result = result.replace("\n", "");
049            return result;
050        }
051        return name;
052    }
053
054    public WidgetReference getWidgetReference() {
055        return new WidgetReferenceImpl(category, getName());
056    }
057
058}