本文整理汇总了Java中com.openbravo.data.loader.TableDefinition类的典型用法代码示例。如果您正苦于以下问题:Java TableDefinition类的具体用法?Java TableDefinition怎么用?Java TableDefinition使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TableDefinition类属于com.openbravo.data.loader包,在下文中一共展示了TableDefinition类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: init
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
public void init(Session s){
this.s = s;
tcustomers = new TableDefinition(s
, "CUSTOMERS"
, new String[] { "ID", "TAXID", "SEARCHKEY", "NAME", "NOTES", "VISIBLE", "CARD", "MAXDEBT", "CURDATE", "CURDEBT"
, "FIRSTNAME", "LASTNAME", "EMAIL", "PHONE", "PHONE2", "FAX"
, "ADDRESS", "ADDRESS2", "POSTAL", "CITY", "REGION", "COUNTRY"
, "TAXCATEGORY" }
, new String[] { "ID", AppLocal.getIntString("label.taxid"), AppLocal.getIntString("label.searchkey"), AppLocal.getIntString("label.name"), AppLocal.getIntString("label.notes"), "VISIBLE", "CARD", AppLocal.getIntString("label.maxdebt"), AppLocal.getIntString("label.curdate"), AppLocal.getIntString("label.curdebt")
, AppLocal.getIntString("label.firstname"), AppLocal.getIntString("label.lastname"), AppLocal.getIntString("label.email"), AppLocal.getIntString("label.phone"), AppLocal.getIntString("label.phone2"), AppLocal.getIntString("label.fax")
, AppLocal.getIntString("label.address"), AppLocal.getIntString("label.address2"), AppLocal.getIntString("label.postal"), AppLocal.getIntString("label.city"), AppLocal.getIntString("label.region"), AppLocal.getIntString("label.country")
, "TAXCATEGORY"}
, new Datas[] { Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.BOOLEAN, Datas.STRING, Datas.DOUBLE, Datas.TIMESTAMP, Datas.DOUBLE
, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING
, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING
, Datas.STRING}
, new Formats[] { Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.BOOLEAN, Formats.STRING, Formats.CURRENCY, Formats.TIMESTAMP, Formats.CURRENCY
, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING
, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING
, Formats.STRING}
, new int[] {0}
);
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:26,代码来源:DataLogicCustomers.java
示例2: init
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
public void init(Session s){
this.s = s;
tcustomers = new TableDefinition(s
, "CUSTOMERS"
, new String[] { "ID", "TAXID", "SEARCHKEY", "NAME", "NOTES", "VISIBLE", "CARD", "MAXDEBT", "CURDATE", "CURDEBT"
, "FIRSTNAME", "LASTNAME", "EMAIL", "PHONE", "PHONE2", "FAX"
, "ADDRESS", "ADDRESS2", "POSTAL", "CITY", "REGION", "COUNTRY"
, "TAXCATEGORY" }
, new String[] { "ID", AppLocal.getIntString("label.taxid"), AppLocal.getIntString("label.searchkey"), AppLocal.getIntString("label.name"), AppLocal.getIntString("label.notes"), "VISIBLE", "CARD", AppLocal.getIntString("label.maxdebt"), AppLocal.getIntString("label.curdate"), AppLocal.getIntString("label.curdebt")
, AppLocal.getIntString("label.firstname"), AppLocal.getIntString("label.lastname"), AppLocal.getIntString("label.email"), AppLocal.getIntString("label.phone"), AppLocal.getIntString("label.phone2"), AppLocal.getIntString("label.fax")
, AppLocal.getIntString("label.address"), AppLocal.getIntString("label.address2"), AppLocal.getIntString("label.postal"), AppLocal.getIntString("label.city"), AppLocal.getIntString("label.region"), AppLocal.getIntString("label.country")
, "TAXCATEGORY"}
, new Datas[] { Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.BOOLEAN, Datas.STRING, Datas.DOUBLE, Datas.TIMESTAMP, Datas.DOUBLE
, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING
, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING
, Datas.STRING}
, new Formats[] { Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.BOOLEAN, Formats.STRING, Formats.CURRENCY, Formats.TIMESTAMP, Formats.CURRENCY
, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING
, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING
, Formats.STRING}
, "NAME"
, new int[] {0}
);
}
开发者ID:nordpos,项目名称:nordpos,代码行数:27,代码来源:DataLogicCustomers.java
示例3: init
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
public void init(Session s){
this.s = s;
m_tpeople = new TableDefinition(s,
"PEOPLE"
, new String[] {"ID", "NAME", "APPPASSWORD", "ROLE", "VISIBLE", "CARD", "IMAGE"}
, new String[] {"ID", AppLocal.getIntString("label.peoplename"), AppLocal.getIntString("Label.Password"), AppLocal.getIntString("label.role"), AppLocal.getIntString("label.peoplevisible"), AppLocal.getIntString("label.card"), AppLocal.getIntString("label.peopleimage")}
, new Datas[] {Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.BOOLEAN, Datas.STRING, Datas.IMAGE}
, new Formats[] {Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.BOOLEAN, Formats.STRING, Formats.NULL}
, new int[] {0}
);
m_troles = new TableDefinition(s,
"ROLES"
, new String[] {"ID", "NAME", "PERMISSIONS"}
, new String[] {"ID", AppLocal.getIntString("Label.Name"), "PERMISSIONS"}
, new Datas[] {Datas.STRING, Datas.STRING, Datas.BYTES}
, new Formats[] {Formats.STRING, Formats.STRING, Formats.NULL}
, new int[] {0}
);
m_tresources = new TableDefinition(s,
"RESOURCES"
, new String[] {"ID", "NAME", "RESTYPE", "CONTENT"}
, new String[] {"ID", AppLocal.getIntString("Label.Name"), AppLocal.getIntString("label.type"), "CONTENT"}
, new Datas[] {Datas.STRING, Datas.STRING, Datas.INT, Datas.BYTES}
, new Formats[] {Formats.STRING, Formats.STRING, Formats.INT, Formats.NULL}
, new int[] {0}
);
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:31,代码来源:DataLogicAdmin.java
示例4: init
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
protected void init() {
tfloors = new TableDefinition(app.getSession(),
"FLOORS"
, new String[] {"ID", "NAME", "IMAGE"}
, new String[] {"ID", AppLocal.getIntString("Label.Name"), "IMAGE"}
, new Datas[] {Datas.STRING, Datas.STRING, Datas.IMAGE}
, new Formats[] {Formats.NULL, Formats.STRING}
, new int[] {0}
);
jeditor = new FloorsEditor(dirty);
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:12,代码来源:JPanelFloors.java
示例5: init
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
public void init(Session s){
m_tthirdparties = new TableDefinition(s,
"THIRDPARTIES"
, new String[] {"ID", "CIF", "NAME", "ADDRESS", "CONTACTCOMM", "CONTACTFACT", "PAYRULE", "FAXNUMBER", "PHONENUMBER", "MOBILENUMBER", "EMAIL", "WEBPAGE", "NOTES"}
, new Datas[] {Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING}
, new Formats[] {Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING}
, new int[] {0}
);
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:12,代码来源:DataLogicThirdParties.java
示例6: init
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
/**
*
*/
@Override
protected void init() {
tfloors = new TableDefinition(app.getSession(),
"FLOORS"
, new String[] {"ID", "NAME", "IMAGE"}
, new String[] {"ID", AppLocal.getIntString("Label.Name"), "IMAGE"}
, new Datas[] {Datas.STRING, Datas.STRING, Datas.IMAGE}
, new Formats[] {Formats.NULL, Formats.STRING}
, new int[] {0}
);
jeditor = new FloorsEditor(dirty);
}
开发者ID:gnoopy,项目名称:wifepos,代码行数:16,代码来源:JPanelFloors.java
示例7: init
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
/**
*
* @param s
*/
public void init(Session s){
m_tthirdparties = new TableDefinition(s,
"THIRDPARTIES"
, new String[] {"ID", "CIF", "NAME", "ADDRESS", "CONTACTCOMM", "CONTACTFACT", "PAYRULE", "FAXNUMBER", "PHONENUMBER", "MOBILENUMBER", "EMAIL", "WEBPAGE", "NOTES"}
, new Datas[] {Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING}
, new Formats[] {Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING}
, new int[] {0}
);
}
开发者ID:gnoopy,项目名称:wifepos,代码行数:16,代码来源:DataLogicThirdParties.java
示例8: init
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
@Override
public void init(Session s){
this.s = s;
m_tpeople = new TableDefinition(s,
"PEOPLE"
, new String[] {"ID", "NAME", "APPPASSWORD", "ROLE", "VISIBLE", "CARD", "IMAGE", "PROPERTIES"}
, new String[] {"ID", AppLocal.getIntString("label.peoplename"), AppLocal.getIntString("Label.Password"), AppLocal.getIntString("label.role"), AppLocal.getIntString("label.peoplevisible"), AppLocal.getIntString("label.card"), AppLocal.getIntString("label.peopleimage"), "PROPERTIES"}
, new Datas[] {Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.BOOLEAN, Datas.STRING, Datas.IMAGE, Datas.BYTES}
, new Formats[] {Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.BOOLEAN, Formats.STRING, Formats.NULL, Formats.NULL}
, "NAME"
, new int[] {0}
);
m_troles = new TableDefinition(s,
"ROLES"
, new String[] {"ID", "NAME", "PERMISSIONS"}
, new String[] {"ID", AppLocal.getIntString("Label.Name"), "PERMISSIONS"}
, new Datas[] {Datas.STRING, Datas.STRING, Datas.BYTES}
, new Formats[] {Formats.STRING, Formats.STRING, Formats.NULL}
, "NAME"
, new int[] {0}
);
m_tresources = new TableDefinition(s,
"RESOURCES"
, new String[] {"ID", "NAME", "RESTYPE", "CONTENT"}
, new String[] {"ID", AppLocal.getIntString("Label.Name"), AppLocal.getIntString("label.type"), "CONTENT"}
, new Datas[] {Datas.STRING, Datas.STRING, Datas.INT, Datas.BYTES}
, new Formats[] {Formats.STRING, Formats.STRING, Formats.INT, Formats.NULL}
, "NAME"
, new int[] {0}
);
}
开发者ID:nordpos,项目名称:nordpos,代码行数:35,代码来源:DataLogicAdmin.java
示例9: init
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
protected void init() {
tfloors = new TableDefinition(app.getSession(),
"FLOORS"
, new String[] {"ID", "NAME", "IMAGE"}
, new String[] {"ID", AppLocal.getIntString("Label.Name"), "IMAGE"}
, new Datas[] {Datas.STRING, Datas.STRING, Datas.IMAGE}
, new Formats[] {Formats.NULL, Formats.STRING}
, "NAME"
, new int[] {0}
);
jeditor = new FloorsEditor(dirty);
}
开发者ID:nordpos,项目名称:nordpos,代码行数:13,代码来源:JPanelFloors.java
示例10: init
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
protected void init() {
DataLogicSales dlSales = null;
dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales");
tplaces = new TableDefinition(app.getSession(),
"PLACES"
, new String[] {"ID", "NAME", "X", "Y", "FLOOR"}
, new String[] {"ID", AppLocal.getIntString("Label.Name"), "X", "Y", AppLocal.getIntString("label.placefloor")}
, new Datas[] {Datas.STRING, Datas.STRING, Datas.INT, Datas.INT, Datas.STRING}
, new Formats[] {Formats.STRING, Formats.STRING, Formats.INT, Formats.INT, Formats.NULL}
, "NAME"
, new int[] {0}
);
jeditor = new PlacesEditor(dlSales, dirty);
}
开发者ID:nordpos,项目名称:nordpos,代码行数:16,代码来源:JPanelPlaces.java
示例11: getTableLayers
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
public final TableDefinition getTableLayers() {
return new TableDefinition(s,
"GEOLAYERS",
new String[]{"ID", "NAME", "VISIBLE", "ICON", "COLOUR"},
new String[]{"ID", AppLocal.getIntString("Label.Name"), "", AppLocal.getIntString("label.image"), ""},
new Datas[]{Datas.STRING, Datas.STRING, Datas.BOOLEAN, Datas.IMAGE, Datas.STRING},
new Formats[]{Formats.NULL, Formats.STRING, Formats.BOOLEAN, Formats.NULL, Formats.STRING},
"NAME",
new int[]{0}
);
}
开发者ID:nordpos,项目名称:nordpos,代码行数:12,代码来源:DataLogicGeomap.java
示例12: getTableMarkers
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
TableDefinition getTableMarkers() {
return new TableDefinition(s,
"GEOMARKERS",
new String[]{"ID", "NAME", "LATITUDE", "LONGITUDE", "VISIBLE", "GEOLAYER"},
new String[]{"ID", AppLocal.getIntString("Label.Name"), "", "", "", ""},
new Datas[]{Datas.STRING, Datas.STRING, Datas.DOUBLE, Datas.DOUBLE, Datas.BOOLEAN, Datas.STRING},
new Formats[]{Formats.NULL, Formats.STRING, Formats.DOUBLE, Formats.DOUBLE, Formats.BOOLEAN, Formats.STRING},
"NAME",
new int[]{0}
);
}
开发者ID:nordpos,项目名称:nordpos,代码行数:12,代码来源:DataLogicGeomap.java
示例13: init
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
protected void init() {
DataLogicSales dlSales = null;
dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales");
tplaces = new TableDefinition(app.getSession(),
"PLACES"
, new String[] {"ID", "NAME", "X", "Y", "FLOOR"}
, new String[] {"ID", AppLocal.getIntString("Label.Name"), "X", "Y", AppLocal.getIntString("label.placefloor")}
, new Datas[] {Datas.STRING, Datas.STRING, Datas.INT, Datas.INT, Datas.STRING}
, new Formats[] {Formats.STRING, Formats.STRING, Formats.INT, Formats.INT, Formats.NULL}
, new int[] {0}
);
jeditor = new PlacesEditor(dlSales, dirty);
}
开发者ID:ZarGate,项目名称:OpenbravoPOS,代码行数:15,代码来源:JPanelPlaces.java
示例14: SaveProvider
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
public SaveProvider(TableDefinition table) {
m_sentupdate = table.getUpdateSentence();
m_sentdelete = table.getDeleteSentence();
m_sentinsert = table.getInsertSentence();
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:6,代码来源:SaveProvider.java
示例15: ListProviderCreator
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
public ListProviderCreator(TableDefinition table) {
this(table.getListSentence(), null);
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:4,代码来源:ListProviderCreator.java
示例16: getTablePeople
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
public final TableDefinition getTablePeople() {
return m_tpeople;
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:4,代码来源:DataLogicAdmin.java
示例17: getTableRoles
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
public final TableDefinition getTableRoles() {
return m_troles;
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:4,代码来源:DataLogicAdmin.java
示例18: getTableResources
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
public final TableDefinition getTableResources() {
return m_tresources;
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:4,代码来源:DataLogicAdmin.java
示例19: getTableCustomers
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
public final TableDefinition getTableCustomers() {
return tcustomers;
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:4,代码来源:DataLogicCustomers.java
示例20: getTableThirdParties
import com.openbravo.data.loader.TableDefinition; //导入依赖的package包/类
public final TableDefinition getTableThirdParties() {
return m_tthirdparties;
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:4,代码来源:DataLogicThirdParties.java
注:本文中的com.openbravo.data.loader.TableDefinition类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论