File: tree_store.go

package info (click to toggle)
golang-github-twstrike-gotk3adapter 0.0~git20170505.0.901a95d%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,232 kB
  • sloc: ruby: 478; makefile: 4
file content (46 lines) | stat: -rw-r--r-- 976 bytes parent folder | download | duplicates (3)
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
package gtk_mock

import (
	"github.com/twstrike/gotk3adapter/glib_mock"
	"github.com/twstrike/gotk3adapter/glibi"
	"github.com/twstrike/gotk3adapter/gtki"
)

type MockTreeStore struct {
	glib_mock.MockObject
}

func (v *MockTreeStore) GetIter(v1 gtki.TreePath) (gtki.TreeIter, error) {
	return nil, nil
}

func (v *MockTreeStore) GetIterFirst() (gtki.TreeIter, bool) {
	return nil, false
}

func (v *MockTreeStore) GetIterFromString(v1 string) (gtki.TreeIter, error) {
	return nil, nil
}

func (v *MockTreeStore) GetPath(v1 gtki.TreeIter) (gtki.TreePath, error) {
	return nil, nil
}

func (v *MockTreeStore) GetValue(v1 gtki.TreeIter, v2 int) (glibi.Value, error) {
	return nil, nil
}

func (v *MockTreeStore) IterNext(v1 gtki.TreeIter) bool {
	return false
}

func (v *MockTreeStore) Append(v1 gtki.TreeIter) gtki.TreeIter {
	return nil
}

func (v *MockTreeStore) Clear() {
}

func (v *MockTreeStore) SetValue(v1 gtki.TreeIter, v2 int, v3 interface{}) error {
	return nil
}