net.anotheria.anosite.gen.assitedata.data.MediaLink Maven / Gradle / Ivy
/**
********************************************************************************
*** MediaLink.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.assitedata.data;
import net.anotheria.asg.data.DataObject;
import java.util.List;
import net.anotheria.util.sorter.IComparable;
public interface MediaLink 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 "href" for internal storage and queries.
*/
public static final String PROP_HREF = "href";
/**
* Constant property name for "type" for internal storage and queries.
*/
public static final String PROP_TYPE = "type";
/**
* Constant property name for "media" for internal storage and queries.
*/
public static final String PROP_MEDIA = "media";
/**
* Constant property name for "rel" for internal storage and queries.
*/
public static final String PROP_REL = "rel";
/**
* Constant property name for "rev" for internal storage and queries.
*/
public static final String PROP_REV = "rev";
/**
* Constant property name for "charset" for internal storage and queries.
*/
public static final String PROP_CHARSET = "charset";
/**
* Constant property name for "hreflang" for internal storage and queries.
*/
public static final String PROP_HREFLANG = "hreflang";
/**
* Constant property name for "browserFiltering" for internal storage and queries.
*/
public static final String PROP_BROWSER_FILTERING = "browserFiltering";
/**
* Constant property name for "onload" for internal storage and queries.
*/
public static final String PROP_ONLOAD = "onload";
/**
* Constant property name for "guards" for internal storage and queries.
*/
public static final String PROP_GUARDS = "guards";
/**
* Constant property name for "file" for internal storage and queries.
*/
public static final String LINK_PROP_FILE = "file";
/**
* 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 href attribute.
*/
public String getHref();
/**
* Sets the value of the href attribute.
*/
public void setHref(String value);
/**
* Returns the value of the type attribute.
*/
public String getType();
/**
* Sets the value of the type attribute.
*/
public void setType(String value);
/**
* Returns the value of the media attribute.
*/
public int getMedia();
/**
* Sets the value of the media attribute.
*/
public void setMedia(int value);
/**
* Returns the value of the rel attribute.
*/
public int getRel();
/**
* Sets the value of the rel attribute.
*/
public void setRel(int value);
/**
* Returns the value of the rev attribute.
*/
public int getRev();
/**
* Sets the value of the rev attribute.
*/
public void setRev(int value);
/**
* Returns the value of the charset attribute.
*/
public String getCharset();
/**
* Sets the value of the charset attribute.
*/
public void setCharset(String value);
/**
* Returns the value of the hreflang attribute.
*/
public String getHreflang();
/**
* Sets the value of the hreflang attribute.
*/
public void setHreflang(String value);
/**
* Returns the value of the browserFiltering attribute.
*/
public String getBrowserFiltering();
/**
* Sets the value of the browserFiltering attribute.
*/
public void setBrowserFiltering(String value);
/**
* Returns the value of the onload attribute.
*/
public String getOnload();
/**
* Sets the value of the onload attribute.
*/
public void setOnload(String value);
/**
* Returns the value of the guards attribute.
*/
public List getGuards();
/**
* Sets the value of the guards attribute.
*/
public void setGuards(List value);
/**
* Returns the value of the file attribute.
*/
public String getFile();
/**
* Sets the value of the file attribute.
*/
public void setFile(String value);
/**
* Returns the number of elements in the "guards" container
*/
public int getGuardsSize();
/**
* Adds a new element to the list.
*/
public void addGuardsElement(String guard);
/**
* Removes the element at position index from the list.
*/
public void removeGuardsElement(int index);
/**
* Swaps elements at positions index1 and index2 in the list.
*/
public void swapGuardsElement(int index1, int index2);
/**
* Returns the element at the position index in the list.
*/
public String getGuardsElement(int index);
}