org.apache.maven.model.ConfigurationContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
/*
=================== DO NOT EDIT THIS FILE ====================
Generated by Modello 1.0.1 on 2009-08-06 15:13:09,
any modifications will be overwritten.
==============================================================
*/
package org.apache.maven.model;
/**
* Contains the configuration information of the container like
* Plugin.
*
* @version $Revision$ $Date$
*/
public class ConfigurationContainer
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Whether any configuration should be propagated to child POMs.
*/
private String inherited;
/**
* The configuration as DOM object.
*/
private Object configuration;
//-----------/
//- Methods -/
//-----------/
/**
* Get the configuration as DOM object.
*
* @return Object
*/
public Object getConfiguration()
{
return this.configuration;
} //-- Object getConfiguration()
/**
* Get whether any configuration should be propagated to child
* POMs.
*
* @return String
*/
public String getInherited()
{
return this.inherited;
} //-- String getInherited()
/**
* Set the configuration as DOM object.
*
* @param configuration
*/
public void setConfiguration( Object configuration )
{
this.configuration = configuration;
} //-- void setConfiguration( Object )
/**
* Set whether any configuration should be propagated to child
* POMs.
*
* @param inherited
*/
public void setInherited( String inherited )
{
this.inherited = inherited;
} //-- void setInherited( String )
private boolean inheritanceApplied = true;
public void unsetInheritanceApplied()
{
this.inheritanceApplied = false;
}
public boolean isInheritanceApplied()
{
return inheritanceApplied;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy