All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anotheria.anosite.gen.asexperiment.data.Experiment Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
/**
 ********************************************************************************
 *** Experiment.java                                                          ***
 *** generated by AnoSiteGenerator (ASG), Version: 2.6.3                      ***
 *** Copyright (C) 2005 - 2010 Anotheria.net, www.anotheria.net               ***
 *** All Rights Reserved.                                                     ***
 ********************************************************************************
 *** Don't edit this code, if you aren't sure                                 ***
 *** that you do exactly know what you are doing!                             ***
 *** It's better to invest time in the generator, as into the generated code. ***
 ********************************************************************************
 */

package net.anotheria.anosite.gen.asexperiment.data;

import net.anotheria.asg.data.DataObject;
import net.anotheria.util.sorter.IComparable;


public interface Experiment extends DataObject, IComparable {

	/**
	 * Constant property name for "id" for internal storage and queries.
	 */
	public static final String PROP_ID	= "id";
	/**
	 * Constant property name for "name" for internal storage and queries.
	 */
	public static final String PROP_NAME	= "name";
	/**
	 * Constant property name for "active" for internal storage and queries.
	 */
	public static final String PROP_ACTIVE	= "active";
	/**
	 * Constant property name for "distribution" for internal storage and queries.
	 */
	public static final String PROP_DISTRIBUTION	= "distribution";
	/**
	 * Constant property name for "description" for internal storage and queries.
	 */
	public static final String PROP_DESCRIPTION	= "description";
	/**
	 * Constant property name for "variant1" for internal storage and queries.
	 */
	public static final String PROP_VARIANT1	= "variant1";
	/**
	 * Constant property name for "variant2" for internal storage and queries.
	 */
	public static final String PROP_VARIANT2	= "variant2";
	/**
	 * Constant property name for "variant3" for internal storage and queries.
	 */
	public static final String PROP_VARIANT3	= "variant3";
	/**
	 * Constant property name for "variant4" for internal storage and queries.
	 */
	public static final String PROP_VARIANT4	= "variant4";
	/**
	 * Constant property name for "variant5" for internal storage and queries.
	 */
	public static final String PROP_VARIANT5	= "variant5";
	/**
	 * Constant property name for "variant6" for internal storage and queries.
	 */
	public static final String PROP_VARIANT6	= "variant6";
	/**
	 * Constant property name for "variant7" for internal storage and queries.
	 */
	public static final String PROP_VARIANT7	= "variant7";
	/**
	 * Constant property name for "variant8" for internal storage and queries.
	 */
	public static final String PROP_VARIANT8	= "variant8";
	/**
	 * Constant property name for "variant9" for internal storage and queries.
	 */
	public static final String PROP_VARIANT9	= "variant9";
	/**
	 * Constant property name for "variant10" for internal storage and queries.
	 */
	public static final String PROP_VARIANT10	= "variant10";

	/**
	 * Returns the value of the name attribute.
	 */
	public String getName();

	/**
	 * Sets the value of the name attribute.
	 */
	public void setName(String value);

	/**
	 * Returns the value of the active attribute.
	 */
	public boolean getActive();

	/**
	 * Sets the value of the active attribute.
	 */
	public void setActive(boolean value);

	/**
	 * Returns the value of the distribution attribute.
	 */
	public int getDistribution();

	/**
	 * Sets the value of the distribution attribute.
	 */
	public void setDistribution(int value);

	/**
	 * Returns the value of the description attribute.
	 */
	public String getDescription();

	/**
	 * Sets the value of the description attribute.
	 */
	public void setDescription(String value);

	/**
	 * Returns the value of the variant1 attribute.
	 */
	public String getVariant1();

	/**
	 * Sets the value of the variant1 attribute.
	 */
	public void setVariant1(String value);

	/**
	 * Returns the value of the variant2 attribute.
	 */
	public String getVariant2();

	/**
	 * Sets the value of the variant2 attribute.
	 */
	public void setVariant2(String value);

	/**
	 * Returns the value of the variant3 attribute.
	 */
	public String getVariant3();

	/**
	 * Sets the value of the variant3 attribute.
	 */
	public void setVariant3(String value);

	/**
	 * Returns the value of the variant4 attribute.
	 */
	public String getVariant4();

	/**
	 * Sets the value of the variant4 attribute.
	 */
	public void setVariant4(String value);

	/**
	 * Returns the value of the variant5 attribute.
	 */
	public String getVariant5();

	/**
	 * Sets the value of the variant5 attribute.
	 */
	public void setVariant5(String value);

	/**
	 * Returns the value of the variant6 attribute.
	 */
	public String getVariant6();

	/**
	 * Sets the value of the variant6 attribute.
	 */
	public void setVariant6(String value);

	/**
	 * Returns the value of the variant7 attribute.
	 */
	public String getVariant7();

	/**
	 * Sets the value of the variant7 attribute.
	 */
	public void setVariant7(String value);

	/**
	 * Returns the value of the variant8 attribute.
	 */
	public String getVariant8();

	/**
	 * Sets the value of the variant8 attribute.
	 */
	public void setVariant8(String value);

	/**
	 * Returns the value of the variant9 attribute.
	 */
	public String getVariant9();

	/**
	 * Sets the value of the variant9 attribute.
	 */
	public void setVariant9(String value);

	/**
	 * Returns the value of the variant10 attribute.
	 */
	public String getVariant10();

	/**
	 * Sets the value of the variant10 attribute.
	 */
	public void setVariant10(String value);



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy