public boolean accept(IResponseDataVisitor visitor) { boolean visit = visitor.preVisit(this); if (visit) { if (this.getServers() != null) { this.getServers().accept(visitor); } if (this.getDeployedVersions() != null) { this.getDeployedVersions().accept(visitor); } if (this.getMessageList() != null) { this.getMessageList().accept(visitor); } return visitor.visit(this); } return false; }
public boolean accept(IResponseDataVisitor visitor) { if (visitor.preVisit(this)) { return visitor.visit(this); } return false; }