コード例 #1
0
 public void updatePropertiesPanel(final boolean force) {
   final PackagingElement<?> selected = getSelection().getElementIfSingle();
   if (!force && Comparing.equal(selected, mySelectedElementInfo.myElement)) {
     return;
   }
   mySelectedElementInfo.save();
   mySelectedElementInfo = new SelectedElementInfo<PackagingElement<?>>(selected);
   mySelectedElementInfo.showPropertiesPanel();
 }
コード例 #2
0
 public void initTree() {
   myBuilder.initRootNode();
   mySelectedElementInfo.showPropertiesPanel();
 }
コード例 #3
0
 public void saveElementProperties() {
   mySelectedElementInfo.save();
 }