1: package org.kohsuke.rngom.ast.builder; 2: 3: import org.kohsuke.rngom.ast.om.Location; 4: 5: public interface CommentList<L extends Location> { 6: void addComment(String value, L loc) throws BuildException; 7: }