1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- package com.sysmodel.collectmodel.xmlmodel.impl;
- import java.util.ArrayList;
- import com.sysmodel.collectmodel.xmlmodel.able.Container;
- public class ContainerImpl implements Container{
- /**
- * 容器类型
- *
- * 普通类型 xtype="no" 下拉闭合 xtype="fieldset" CHECKBOX闭合 xtype="fieldsetcheck"
- * 标签类型的格式 xtype="tabpanel" 标签类型下级标签xtype="tabpanelitem"
- *
- */
- String xtype = "";
- /**
- * 容器标题或描述
- */
- String title = "";
- /**
- * 容器默认CSS设置
- */
- String defaults = "";
- /**
- * 是否自适应高度
- */
- boolean autoHeight = false;
- /**
- *
- */
- boolean collapsed = false;
- ArrayList<Object> ObjElements = new ArrayList<Object>();
- public String getXtype() {
- return xtype;
- }
- public void setXtype(String xtype) {
- this.xtype = xtype;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getDefaults() {
- return defaults;
- }
- public void setDefaults(String defaults) {
- this.defaults = defaults;
- }
- public boolean isAutoHeight() {
- return autoHeight;
- }
- public void setAutoHeight(boolean autoHeight) {
- this.autoHeight = autoHeight;
- }
- public boolean isCollapsed() {
- return collapsed;
- }
- public void setCollapsed(boolean collapsed) {
- this.collapsed = collapsed;
- }
- @SuppressWarnings("rawtypes")
- public ArrayList getObjElements() {
- return ObjElements;
- }
- @SuppressWarnings({ "rawtypes", "unchecked" })
- public void setObjElements(ArrayList objElements) {
- ObjElements = objElements;
- }
- }
|