示例#1
0
文件: Slot.java 项目: raehalme/vaadin
 /*
  * (non-Javadoc)
  *
  * @see com.google.gwt.user.client.ui.Widget#onAttach()
  */
 @Override
 protected void onAttach() {
   super.onAttach();
   if (spacer != null) {
     getElement().getParentElement().insertBefore(spacer, getElement());
   }
 }
示例#2
0
文件: VUI.java 项目: horun/vaadin
 @Override
 protected void onAttach() {
   super.onAttach();
   historyHandlerRegistration = History.addValueChangeHandler(historyChangeHandler);
   currentFragment = History.getToken();
 }