001/*
002 * (C) Copyright 2006-2007 Nuxeo SAS <http://nuxeo.com> and others
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Jean-Marc Orliaguet, Chalmers
011 *
012 * $Id$
013 */
014
015package org.nuxeo.theme.models;
016
017public class Menu extends AbstractModel {
018
019    private String title;
020
021    private String description;
022
023    public Menu() {
024    }
025
026    public String getTitle() {
027        return title;
028    }
029
030    public void setTitle(String title) {
031        this.title = title;
032    }
033
034    public String getDescription() {
035        return description;
036    }
037
038    public void setDescription(String description) {
039        this.description = description;
040    }
041
042}