package com.k_int.openxsd.analysis.iface;

import com.k_int.openxsd.core.DocumentPath;


public interface SimplePathAnalysis
{
    
    public void addDocumentPath(DocumentPath path);
    
    
    /**
     * 
     * @param simple_path . A simple xpath expression - minus namespace prefixes
     * @return            . The document path info descriding the element at the 'end'
     *                      of this xpath expression
     *                      e.g. /a/b/c will return info about element c as well as info about
     *                      the 'path' leading up to c.
     */
    public DocumentPath getPath(String simple_path);
    
}
