You can try below example:
VerticalPanel vp = new VerticalPanel();
vp.setStyleName("Seperator");
Tool.add(vp); // Tool is your holder of group elements
In your css, please add:
.Seperator {
/* 1px width, solid silver color separator */
background: 1px solid silver;
width: 1px;
height: 100%;
}
Best
Kevin