Package com.zycus.dotproject.ui.component

Examples of com.zycus.dotproject.ui.component.IndentBorder


    @Override
    public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
      TreeListCellRenderer.this.updateUI();
      super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
      int depth = (value instanceof BOProject) ? 0 : getDepth((BODepartment) value);// somehow
      IndentBorder indentBorder = new IndentBorder();
      indentBorder.setDepth(depth);
      setBorder(indentBorder);
      return this;
    }
View Full Code Here


    @Override
    public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
      TreeListCellRenderer.this.updateUI();
      super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
      int depth = (value instanceof BOProject) ? 0 : getDepth((BODepartment) value);// somehow
      IndentBorder indentBorder = new IndentBorder();
      indentBorder.setDepth(depth);
      setBorder(indentBorder);
      return this;
    }
View Full Code Here

          }
        } else {
          checkBox.setSelected(false);
        }
        int depth = (value instanceof BOProject) ? 0 : getDepth((BOTask) value);
        IndentBorder indentBorder = new IndentBorder();
        indentBorder.setDepth(depth);
        checkBox.setBorder(indentBorder);
        return checkBox;
      }
View Full Code Here

      TreeListCellRenderer.this.updateUI();
      super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
      boolean leaf = pureModel.isLeaf(value);
      setIcon(leaf ? UIManager.getIcon("Tree.leafIcon") : UIManager.getIcon("Tree.openIcon"));
      int depth = (value instanceof BOProject) ? 0 : getDepth((BOTask) value);// somehow
      IndentBorder indentBorder = new IndentBorder();
      indentBorder.setDepth(depth);
      setBorder(indentBorder);
      return this;
    }
View Full Code Here

TOP

Related Classes of com.zycus.dotproject.ui.component.IndentBorder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.