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

net.anotheria.anosite.gen.asresourcedata.data.Image Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
/**
 ********************************************************************************
 *** Image.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.asresourcedata.data;

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


public interface Image 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 "title" for internal storage and queries.
	 */
	public static final String PROP_TITLE	= "title";
	/**
	 * Constant property name for "alias" and domain "EN" for internal storage and queries.
	 */
	public static final String PROP_ALIAS_EN	= "alias_EN";
	/**
	 * Constant property name for "alias" and domain "DE" for internal storage and queries.
	 */
	public static final String PROP_ALIAS_DE	= "alias_DE";
	/**
	 * Constant property name for "alt" and domain "EN" for internal storage and queries.
	 */
	public static final String PROP_ALT_EN	= "alt_EN";
	/**
	 * Constant property name for "alt" and domain "DE" for internal storage and queries.
	 */
	public static final String PROP_ALT_DE	= "alt_DE";
	/**
	 * Constant property name for "image" for internal storage and queries.
	 */
	public static final String PROP_IMAGE	= "image";
	/**
	 * Constant property name for "size" for internal storage and queries.
	 */
	public static final String PROP_SIZE	= "size";
	/**
	 * Constant property name for "pixels" for internal storage and queries.
	 */
	public static final String PROP_PIXELS	= "pixels";

	/**
	 * 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 title attribute.
	 */
	public String getTitle();

	/**
	 * Sets the value of the title attribute.
	 */
	public void setTitle(String value);

	/**
	 * Returns the value of the alias attribute in the "EN" domain.
	 */
	public String getAliasEN();

	/**
	 * Returns the value of the alias attribute in the "DE" domain.
	 */
	public String getAliasDE();

	/**
	 * Returns the current value of the alias attribute.
	 * Current means in the currently selected domain.
	 */
	public String getAlias();


	/**
	 * Sets the value of the alias attribute in the domain "EN"
	 */
	public void setAliasEN(String value);

	/**
	 * Sets the value of the alias attribute in the domain "DE"
	 */
	public void setAliasDE(String value);

	/**
	 * Sets the value of the alias attribute in the current domain. Current means in the currently selected domain.
	 */
	public void setAlias(String value);

	/**
	 * Returns the value of the alt attribute in the "EN" domain.
	 */
	public String getAltEN();

	/**
	 * Returns the value of the alt attribute in the "DE" domain.
	 */
	public String getAltDE();

	/**
	 * Returns the current value of the alt attribute.
	 * Current means in the currently selected domain.
	 */
	public String getAlt();


	/**
	 * Sets the value of the alt attribute in the domain "EN"
	 */
	public void setAltEN(String value);

	/**
	 * Sets the value of the alt attribute in the domain "DE"
	 */
	public void setAltDE(String value);

	/**
	 * Sets the value of the alt attribute in the current domain. Current means in the currently selected domain.
	 */
	public void setAlt(String value);

	/**
	 * Returns the value of the image attribute.
	 */
	public String getImage();

	/**
	 * Sets the value of the image attribute.
	 */
	public void setImage(String value);

	/**
	 * Returns the value of the size attribute.
	 */
	public String getSize();

	/**
	 * Sets the value of the size attribute.
	 */
	public void setSize(String value);

	/**
	 * Returns the value of the pixels attribute.
	 */
	public String getPixels();

	/**
	 * Sets the value of the pixels attribute.
	 */
	public void setPixels(String value);



	/**
	 * Copies all multilingual properties from source language to destination language 
	 */
	public void copyLANG2LANG(String sourceLanguge, String destLanguage);

	/**
	 * Copies all multilingual properties from language EN to language DE
	 */
	public void copyEN2DE();

	/**
	 * Copies all multilingual properties from language DE to language EN
	 */
	public void copyDE2EN();


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy