-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdblistcontainer.go
73 lines (50 loc) · 1.56 KB
/
dblistcontainer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package wajaf
type DBListContainer struct {
NodeDef
}
func NewDBListContainer(id string) *DBListContainer {
c := &DBListContainer{
NodeDef: NewNode("container", "dblistContainer"),
}
c.SetID(id)
c.RegisterKnownAttributes([]string{"display", "style", "classname", "classnamezone", "left", "width", "right", "top", "height", "bottom", "haslistener"})
c.RegisterKnownChildren([]string{"zone", "template", "dataset", "event", "help"})
return c
}
func (c *DBListContainer) NewZone(ztype string, id string) NodeDef {
z := NewDBListZone(ztype, id)
c.AddChild(z)
return z
}
type DBListZone NodeDef
func NewDBListZone(id string, ztype string) DBListZone {
z := NewNode("zone", ztype)
z.SetID(id)
z.RegisterKnownAttributes([]string{"style", "classname", "application", "params"})
z.RegisterKnownChildren([]string{"container", "element", "event", "help"})
return z
}
func (c *DBListContainer) NewTemplate(ttype string, name string) NodeDef {
z := NewDBListTemplate(ttype, name)
c.AddChild(z)
return z
}
type DBListTemplate NodeDef
func NewDBListTemplate(ttype string, name string) DBListTemplate {
t := NewNode("template", ttype)
t.RegisterKnownAttributes([]string{"name"})
t.RegisterKnownChildren([]string{"container", "element"})
t.SetAttribute("name", name)
return t
}
func (c *DBListContainer) NewDataset(dtype string, data string) NodeDef {
z := NewDBListDataset(dtype, data)
c.AddChild(z)
return z
}
type DBListDataset NodeDef
func NewDBListDataset(dtype string, data string) DBListDataset {
d := NewNode("dataset", dtype)
d.SetData(data)
return d
}