2
Fork 0

[svn r262] made i18n work, added some images, made preperments for the user options

This commit is contained in:
willemc 2007-08-03 04:09:01 +02:00
parent cb8d6bc334
commit 0d5312462c
27 changed files with 468 additions and 163 deletions

View file

@ -33,7 +33,6 @@ import com.idcanet.vasc.core.actions.ColumnVascAction;
import com.idcanet.vasc.core.actions.GlobalVascAction;
import com.idcanet.vasc.core.actions.RowVascAction;
import com.idcanet.vasc.core.column.VascTableColumn;
import com.idcanet.xtes.xpql.query.Query;
/**
*
@ -44,14 +43,13 @@ public class VascTable {
private String name = null;
private String headerName = null;
private String description = null;
private String toolTip = null;
private String headerImage = null;
private String headerToolTip = null;
private List<VascTableColumn> tableColumns = null;
private List<RowVascAction> rowActions = null;
private List<ColumnVascAction> columnActions = null;
private List<GlobalVascAction> globalActions = null;
private VascDataSource vascDataSource = null;
private Query query = null;
private List<Object> tableData = null;
private Object selectedObject = null;
private VascRecordCreator vascRecordCreator = null;
@ -84,19 +82,6 @@ public class VascTable {
columnActions.add(columnAction);
}
/**
* @return the description
*/
public String getDescription() {
return description;
}
/**
* @param description the description to set
*/
public void setDescription(String description) {
this.description = description;
}
/**
* @return the globalActions
@ -140,20 +125,6 @@ public class VascTable {
this.name = name;
}
/**
* @return the query
*/
public Query getQuery() {
return query;
}
/**
* @param query the query to set
*/
public void setQuery(Query query) {
this.query = query;
}
/**
* @return the rowActions
*/
@ -216,19 +187,6 @@ public class VascTable {
this.tableData = tableData;
}
/**
* @return the toolTip
*/
public String getToolTip() {
return toolTip;
}
/**
* @param toolTip the toolTip to set
*/
public void setToolTip(String toolTip) {
this.toolTip = toolTip;
}
/**
* @return the userOptions
@ -327,6 +285,32 @@ public class VascTable {
public void setVascTableController(VascTableController vascTableController) {
this.vascTableController = vascTableController;
}
/**
* @return the headerImage
*/
public String getHeaderImage() {
return headerImage;
}
/**
* @param headerImage the headerImage to set
*/
public void setHeaderImage(String headerImage) {
this.headerImage = headerImage;
}
/**
* @return the headerToolTip
*/
public String getHeaderToolTip() {
return headerToolTip;
}
/**
* @param headerToolTip the headerToolTip to set
*/
public void setHeaderToolTip(String headerToolTip) {
this.headerToolTip = headerToolTip;
}
}