Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-toolbox-widget@99209 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-08-05 13:49:12 +00:00 committed by Giancarlo Panichi
parent 46b4d17662
commit 085c541527
1 changed files with 21 additions and 15 deletions

View File

@ -11,6 +11,7 @@ import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.Verti
import com.sencha.gxt.widget.core.client.form.FieldSet;
public class HelpPanel extends FramedPanel {
protected String headingTitle;
protected HashMap<String, String> tabularResourcePropertiesMap;
protected VerticalLayoutContainer vl;
@ -35,28 +36,31 @@ public class HelpPanel extends FramedPanel {
}
public void addContents() {
HTML title=new HTML("<H2>Tabular Data Manager Help<H2>");
vl.add(title,new VerticalLayoutData(-1, -1, new Margins(1,1,10,1)));
HTML title = new HTML("<H2>Tabular Data Manager Help<H2>");
vl.add(title, new VerticalLayoutData(-1, -1, new Margins(1, 1, 10, 1)));
contents = new FieldSet();
contents.setHeadingText("Contents");
contents.setCollapsible(true);
contents.setResize(true);
layoutCaptions = new VerticalLayoutContainer();
contents.add(layoutCaptions);
HTML info=new HTML("<p><em><b>Tabular Data Manager</b></em> offers facilities supporting the management of the entire life-cycle" +
"(creation, curation, manipulation and publication) of <em>Tabular Resources</em> such as datasets, codelist or generic table." +
" i.e. tabular data representing observations of a given event or phenomenon at different time intervals." +
" Tabular Resource are used in many domains ranging from statistics to signal processing and econometrics." +
" Tabular Data Manager offers a rich set of facilities ranging from those supporting the assessment" +
" of data correctness to those supporting the verification of the compliance of data with given code lists," +
" the aggregation and filtering of data.</p>");
layoutCaptions.add(info,
new VerticalLayoutData(-1, -1, new Margins(1)));
HTML info = new HTML(
"<p><em><b>Tabular Data Manager</b></em> offers facilities supporting the management of the entire life-cycle"
+ "(creation, curation, manipulation and publication) of <em>Tabular Resources</em> such as datasets, codelist or generic table."
+ " i.e. tabular data representing observations of a given event or phenomenon at different time intervals."
+ " Tabular Resource are used in many domains ranging from statistics to signal processing and econometrics."
+ " Tabular Data Manager offers a rich set of facilities ranging from those supporting the assessment"
+ " of data correctness to those supporting the verification of the compliance of data with given code lists,"
+ " the aggregation and filtering of data.</p>");
vl.add(contents,new VerticalLayoutData(-1, -1, new Margins(1)));
layoutCaptions
.add(info, new VerticalLayoutData(-1, -1, new Margins(1)));
vl.add(contents, new VerticalLayoutData(-1, -1, new Margins(1)));
}
@ -89,4 +93,6 @@ public class HelpPanel extends FramedPanel {
}
}