]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/src/main/webapp/source/class/org/argeo/slc/web/components/IView.js
Huge refactoring
[gpl/argeo-slc.git] / org.argeo.slc.webapp / src / main / webapp / source / class / org / argeo / slc / web / components / IView.js
1 /**
2 * @author Charles du Jeu
3 *
4 */
5 qx.Interface.define("org.argeo.slc.web.components.IView", {
6
7 properties : {
8 commands : {}
9 },
10
11 members : {
12 init : function(viewPane){
13 return true;
14 },
15 load : function(data){
16 return true;
17 },
18 addScroll : function(){
19 return true;
20 }
21 }
22 });