「プロパティー」ペインの追加

クラス IlvDashboardPropertyPanelには、ダイアグラムで選択したオブジェクトのプロパティーを表示する Swing JTable が含まれています。 プロパティー・シートを使用して、背景オブジェクトのプロパティーや記号のパラメーターを表示し、編集します。
diadash_propertysheet6.png
IlvDiagrammerPropertyPanel
以下のコード例は、ダッシュボード・アプリケーションに IlvDashboardPropertyPanel を追加する方法を示します。
ダッシュボード・アプリケーションへの IlvDashboardPropertyPanel インスタンスの追加
url = IlvDiagrammerPropertySheet.class.getResource("images/psheet.gif");
    icon = new ImageIcon(url);
IlvDashboardPropertyPanel ppanel = new IlvDashboardPropertyPanel(this);

IlvDashboardExpandablePane psheetFrame = 
      new IlvDashboardExpandablePane("Property Sheet", icon, ppanel);
    
IlvDashboardExpandableSplitPane split = new IlvDashboardExpandableSplitPane(treeFrame, psheetFrame);
split.setResizeWeight(0.5);
split.setDividerLocation(300);