01: package org.kohsuke.rngom.digested;
02:
03: import org.kohsuke.rngom.ast.builder.CommentList;
04: import org.kohsuke.rngom.ast.builder.BuildException;
05: import org.kohsuke.rngom.ast.om.Location;
06: import org.kohsuke.rngom.ast.util.LocatorImpl;
07:
08: /**
09: * @author Kohsuke Kawaguchi (kk@kohsuke.org)
10: */
11: final class CommentListImpl implements CommentList<LocatorImpl> {
12: public void addComment(String value, LocatorImpl loc)
13: throws BuildException {
14: // TODO
15: }
16: }
|