org.jvnet.annox.model.XAnnotated Maven / Gradle / Ivy
package org.jvnet.annox.model;
public class XAnnotated {
protected final XAnnotation[] xannotations;
public XAnnotated(XAnnotation[] xannotations) {
this.xannotations = xannotations;
}
public XAnnotation[] getXAnnotations() {
return xannotations;
}
}