comparison src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/core/Node.java @ 27:5f4172d6fb8b

clean up
author Shoshi TAMAKI
date Mon, 14 Jan 2013 04:07:15 +0900
parents 075d6418e359
children f4be99977be2
comparison
equal deleted inserted replaced
26:075d6418e359 27:5f4172d6fb8b
1 package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core; 1 package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core;
2 2
3 public interface Node<T extends Node<T>> 3 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.traverser.Parent;
4
5 public interface Node extends Parent<Node>
4 { 6 {
5 public Children<T> getChildren(); 7 public Children getChildren();
6 public Attributes getAttributes(); 8 public Attributes getAttributes();
7 } 9 }
8
9 interface Container<T>
10 {
11
12 }