/******************************************************************************* * Copyright (c) 2004, 2007 IBM Corporation and Cambridge Semantics Incorporated. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * File: $Source: /cvsroot/slrp/boca/com.ibm.adtech.boca.jastor/src/com/ibm/adtech/boca/jastor/ant/CustomThingElement.java,v $ * Created by: * Created on: 01/23/2007 * Revision: $Id: CustomThingElement.java 172 2007-07-31 14:22:23Z mroy $ * * Contributors: * IBM Corporation - initial API and implementation * Cambridge Semantics Incorporated - Fork to Anzo *******************************************************************************/ package org.openanzo.rdf.jastor.ant; import org.apache.tools.ant.Task; /** * * @author Ben Szekely (<a href="mailto:bhszekel@us.ibm.com">bhszekel@us.ibm.com</a>) * @author Elias Torres (<a href="mailto:eliast@us.ibm.com">eliast@us.ibm.com</a>) * */ public class CustomThingElement extends Task { private String thingInterface; private String thingImpl; private String thingFactory; /** * Get the ThingFactory for this task * * @return the ThingFactory for this task */ public String getThingFactory() { return thingFactory; } /** * Set the ThingFactory for this task * * @param thingFactory * the ThingFactory for this task */ public void setThingFactory(String thingFactory) { this.thingFactory = thingFactory; } /** * Get the ThingImpl for this task * * @return the ThingImpl for this task */ public String getThingImpl() { return thingImpl; } /** * Set the ThingImpl for this task * * @param thingImpl * the ThingImpl for this task */ public void setThingImpl(String thingImpl) { this.thingImpl = thingImpl; } /** * Get the ThingInterface for this task * * @return the ThingInterface for this task */ public String getThingInterface() { return thingInterface; } /** * Set the ThingInterface for this task * * @param thingInterface * the ThingInterface for this task */ public void setThingInterface(String thingInterface) { this.thingInterface = thingInterface; } }