view src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/impl/NodeImpl.java @ 10:a2c019a77c27

commit
author Shoshi TAMAKI
date Mon, 10 Dec 2012 18:50:53 +0900
parents
children
line wrap: on
line source

package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.impl;

import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core.Attributes;
import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core.Children;
import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core.Node;

public class NodeImpl implements Node
{
	public AttributesImpl attrs;
	public ChildrenImpl children;
	
	public NodeImpl()
	{
		attrs = new AttributesImpl();
	}

	@Override
	public Children getChildren()
	{
		return children;
	}

	@Override
	public Attributes getAttributes()
	{
		return attrs;
	}
}