Class FrameRule
- java.lang.Object
-
- com.priint.pubserver.tagging.TaggingObject
-
- com.priint.pubserver.comet.bridge.Comet3Entity
-
- com.priint.pubserver.comet3.entity.FrameRule
-
- All Implemented Interfaces:
java.io.Serializable
public class FrameRule extends Comet3Entity
Java Interface for framerule complex type. For internal use only
The following schema fragments specify the expected content contained within this class.
<complexType name="rule"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="1"/> <element name="params" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1"/> </sequence> </restriction> </complexContent> </complexType> <complexType name="banner"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="gridid" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="1"/> <element name="elementid" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="1"/> <element name="pagerelative" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="1"/> <element name="intersection" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="1"/> <element name="distance" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="1"/> </sequence> </restriction> </complexContent> </complexType> <complexType name="framerule"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="pageitemid" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="1"/> <element name="prerule" type="{http://comet.priint.com/configuration/entities/framerule}rule" minOccurs="1"/> <element name="postrule" type="{http://comet.priint.com/configuration/entities/framerule}rule" minOccurs="1"/> <element name="banner" type="{http://comet.priint.com/configuration/entities/framerule}banner" minOccurs="1"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFrameRule.BannerThe type Banner.static classFrameRule.RuleThe type Rule.-
Nested classes/interfaces inherited from class com.priint.pubserver.tagging.TaggingObject
TaggingObject.LinkedSetWrapper<T>
-
-
Field Summary
-
Fields inherited from class com.priint.pubserver.comet.bridge.Comet3Entity
id, timestamp
-
Fields inherited from class com.priint.pubserver.tagging.TaggingObject
tagsSet
-
-
Constructor Summary
Constructors Constructor Description FrameRule()Instantiates a new Frame rule.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FrameRule.BannergetBanner()Gets banner.java.lang.IntegergetPageItemId()Gets page item id.FrameRule.RulegetPostrule()Gets postrule.FrameRule.RulegetPrerule()Gets prerule.voidsetBanner(FrameRule.Banner banner)Sets banner.voidsetPageItemId(java.lang.Integer pageItemId)Sets page item id.voidsetPostrule(FrameRule.Rule postrule)Sets postrule.voidsetPrerule(FrameRule.Rule prerule)Sets prerule.-
Methods inherited from class com.priint.pubserver.comet.bridge.Comet3Entity
entityEquals, entityEquals, getId, getLastModificationTimestamp, info, postprocess, setId, setLastModificationTimestamp
-
Methods inherited from class com.priint.pubserver.tagging.TaggingObject
addToTags, getTags, getTagValue, inTags, isA, removeFromTags, searchListByTags, setTags, setTags
-
-
-
-
Method Detail
-
getBanner
public FrameRule.Banner getBanner()
Gets banner.- Returns:
- the banner
-
getPageItemId
public java.lang.Integer getPageItemId()
Gets page item id.- Returns:
- the page item id
-
getPostrule
public FrameRule.Rule getPostrule()
Gets postrule.- Returns:
- the postrule
-
getPrerule
public FrameRule.Rule getPrerule()
Gets prerule.- Returns:
- the prerule
-
setBanner
public void setBanner(FrameRule.Banner banner)
Sets banner.- Parameters:
banner- the banner
-
setPageItemId
public void setPageItemId(java.lang.Integer pageItemId)
Sets page item id.- Parameters:
pageItemId- the page item id
-
setPostrule
public void setPostrule(FrameRule.Rule postrule)
Sets postrule.- Parameters:
postrule- the postrule
-
setPrerule
public void setPrerule(FrameRule.Rule prerule)
Sets prerule.- Parameters:
prerule- the prerule
-
-