Return-Path: Mailing-List: contact turbine-maven-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list turbine-maven-dev@jakarta.apache.org Received: (qmail 6246 invoked by uid 97); 2 Dec 2002 07:32:31 -0000 Received: (qmail 6242 invoked by uid 98); 2 Dec 2002 07:32:31 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Received: (qmail 6223 invoked from network); 2 Dec 2002 07:32:29 -0000 Received: from daedalus.apache.org (HELO apache.org) (63.251.56.142) by nagoya.betaversion.org with SMTP; 2 Dec 2002 07:32:29 -0000 Received: (qmail 49316 invoked by uid 500); 2 Dec 2002 07:31:13 -0000 Received: (qmail 49309 invoked from network); 2 Dec 2002 07:31:12 -0000 Received: from icarus.apache.org (63.251.56.143) by daedalus.apache.org with SMTP; 2 Dec 2002 07:31:12 -0000 Received: (qmail 24566 invoked by uid 1162); 2 Dec 2002 07:31:11 -0000 Date: 2 Dec 2002 07:31:11 -0000 Message-ID: <20021202073111.24565.qmail@icarus.apache.org> From: jvanzyl@apache.org To: jakarta-turbine-maven-cvs@apache.org Subject: cvs commit: jakarta-turbine-maven/src/java/org/apache/maven AbstractMavenComponent.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N jvanzyl 2002/12/01 23:31:11 Added: src/java/org/apache/maven AbstractMavenComponent.java Log: o base maven component. Revision Changes Path 1.1 jakarta-turbine-maven/src/java/org/apache/maven/AbstractMavenComponent.java Index: AbstractMavenComponent.java =================================================================== package org.apache.maven; /* ==================================================================== * The Apache Software License, Version 1.1 * * Copyright (c) 2001 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 4. The names "Apache" and "Apache Software Foundation" and * "Apache Maven" must not be used to endorse or promote products * derived from this software without prior written permission. For * written permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache", * "Apache Maven", nor may "Apache" appear in their name, without * prior written permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * . * * ==================================================================== */ import org.apache.maven.jelly.MavenJellyContext; /** * Base class from which all components in maven are derived. * * @author Jason van Zyl * * @version $Id: AbstractMavenComponent.java,v 1.1 2002/12/02 07:31:11 jvanzyl Exp $ */ public abstract class AbstractMavenComponent { // ------------------------------------------------------------ // I N S T A N C E M E M B E R S // ------------------------------------------------------------ /** Jelly conext. */ protected MavenJellyContext context; // ------------------------------------------------------------ // C O N S T R U C T O R S // ------------------------------------------------------------ /** Default Constructor. */ public AbstractMavenComponent() { } // ------------------------------------------------------------ // A C C E S S O R S // ------------------------------------------------------------ /** * Set the context. * * @param context Maven jelly context. */ public void setContext( MavenJellyContext context ) { this.context = context; } /** Retrieve the Jelly context. * * @return The Jelly context. */ public MavenJellyContext getContext() { return context; } }