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: 3.2.2                      ***
 *** Copyright (C) 2005 - 2023 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.
	 */
	String PROP_ID	= "id";
	/**
	 * Constant property name for "name" for internal storage and queries.
	 */
	String PROP_NAME	= "name";
	/**
	 * Constant property name for "active" for internal storage and queries.
	 */
	String PROP_ACTIVE	= "active";
	/**
	 * Constant property name for "distribution" for internal storage and queries.
	 */
	String PROP_DISTRIBUTION	= "distribution";
	/**
	 * Constant property name for "description" for internal storage and queries.
	 */
	String PROP_DESCRIPTION	= "description";
	/**
	 * Constant property name for "variant1" for internal storage and queries.
	 */
	String PROP_VARIANT1	= "variant1";
	/**
	 * Constant property name for "variant2" for internal storage and queries.
	 */
	String PROP_VARIANT2	= "variant2";
	/**
	 * Constant property name for "variant3" for internal storage and queries.
	 */
	String PROP_VARIANT3	= "variant3";
	/**
	 * Constant property name for "variant4" for internal storage and queries.
	 */
	String PROP_VARIANT4	= "variant4";
	/**
	 * Constant property name for "variant5" for internal storage and queries.
	 */
	String PROP_VARIANT5	= "variant5";
	/**
	 * Constant property name for "variant6" for internal storage and queries.
	 */
	String PROP_VARIANT6	= "variant6";
	/**
	 * Constant property name for "variant7" for internal storage and queries.
	 */
	String PROP_VARIANT7	= "variant7";
	/**
	 * Constant property name for "variant8" for internal storage and queries.
	 */
	String PROP_VARIANT8	= "variant8";
	/**
	 * Constant property name for "variant9" for internal storage and queries.
	 */
	String PROP_VARIANT9	= "variant9";
	/**
	 * Constant property name for "variant10" for internal storage and queries.
	 */
	String PROP_VARIANT10	= "variant10";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy