コード例 #1
0
 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;
 }
コード例 #2
0
ファイル: CodeTrace.java プロジェクト: laiello/zend-webapi
 public boolean accept(IResponseDataVisitor visitor) {
   if (visitor.preVisit(this)) {
     return visitor.visit(this);
   }
   return false;
 }