Project.java revision 58
58N/A/*
58N/A * CDDL HEADER START
58N/A *
58N/A * The contents of this file are subject to the terms of the
58N/A * Common Development and Distribution License (the "License").
58N/A * You may not use this file except in compliance with the License.
58N/A *
58N/A * See LICENSE.txt included in this distribution for the specific
58N/A * language governing permissions and limitations under the License.
58N/A *
58N/A * When distributing Covered Code, include this CDDL HEADER in each
58N/A * file and include the License file at LICENSE.txt.
58N/A * If applicable, add the following below this CDDL HEADER, with the
58N/A * fields enclosed by brackets "[]" replaced with your own identifying
58N/A * information: Portions Copyright [yyyy] [name of copyright owner]
58N/A *
58N/A * CDDL HEADER END
58N/A */
58N/A
58N/A/*
58N/A * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
58N/A * Use is subject to license terms.
58N/A */
58N/Apackage org.opensolaris.opengrok.configuration;
58N/A
58N/A/**
58N/A *
58N/A * @author Trond Norbye
58N/A */
58N/Apublic class Project {
58N/A private String path;
58N/A private String description;
58N/A
58N/A public String getDescription() {
58N/A return description;
58N/A }
58N/A
58N/A public String getPath() {
58N/A return path;
58N/A }
58N/A
58N/A public void setDescription(String description) {
58N/A this.description = description;
58N/A }
58N/A
58N/A public void setPath(String path) {
58N/A this.path = path;
58N/A }
58N/A
58N/A /** Creates a new instance of Project */
58N/A public Project() {
58N/A }
58N/A
58N/A public Project(String description, String path) {
58N/A this.description = description;
58N/A this.path = path;
58N/A }
58N/A}