source: java/main/src/main/java/com/framsticks/gui/tree/AbstractNode.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
File size: 421 bytes
Line 
1package com.framsticks.gui.tree;
2
3import com.framsticks.gui.AbstractPanel;
4
5
6
7public abstract class AbstractNode {
8
9        public AbstractNode() {
10        }
11
12        public abstract int getChildCount();
13        public abstract Object getChild(int number);
14        public abstract int getIndexOfChild(Object child);
15
16        public abstract boolean isLeaf();
17        public abstract void render(TreeCellRenderer renderer);
18
19        public abstract AbstractPanel getPanel();
20
21}
Note: See TracBrowser for help on using the repository browser.