com.penglecode.common.support.NodeLocator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
commons is a little java tool to make your development easier in your work.
The newest version!
package com.penglecode.common.support;
import java.util.List;
public interface NodeLocator {
public Node getNodeByKey(final String key);
public void refreshLocator(final List nodeList);
}