blob: 99b744a8f16ec4e45ab83560559d33b2205ad3f6 [file] [log] [blame]
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE file.
*/
package org.apache.myrmidon.libs.runtime;
import org.apache.myrmidon.api.Task;
import org.apache.myrmidon.framework.AbstractTypeDef;
/**
* Task to define a type.
*
* @author <a href="mailto:donaldp@apache.org">Peter Donald</a>
*/
public class TypeDef
extends AbstractTypeDef
{
private String m_type;
public void setType( final String type )
{
m_type = type;
}
protected String getTypeName()
{
return m_type;
}
}