01: package org.kohsuke.rngom.parse.host;
02:
03: import org.kohsuke.rngom.ast.om.Location;
04:
05: /**
06: *
07: * @author
08: * Kohsuke Kawaguchi (kk@kohsuke.org)
09: */
10: final class LocationHost implements Location {
11: final Location lhs;
12: final Location rhs;
13:
14: LocationHost(Location lhs, Location rhs) {
15: this.lhs = lhs;
16: this.rhs = rhs;
17: }
18: }
|