//# 0 errors, 116 messages
//#
/*
    //#viewmonthaction.java:1:1: class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#viewmonthaction.java:1:1: method: net.sourceforge.pebble.web.action.ViewMonthAction.net.sourceforge.pebble.web.action.ViewMonthAction__static_init
 * Copyright (c) 2003-2006, Simon Brown
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *   - Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *
 *   - Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in
 *     the documentation and/or other materials provided with the
 *     distribution.
 *
 *   - Neither the name of Pebble nor the names of its contributors may
 *     be used to endorse or promote products derived from this software
 *     without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */
package net.sourceforge.pebble.web.action;

import net.sourceforge.pebble.Constants;
import net.sourceforge.pebble.util.SecurityUtils;
import net.sourceforge.pebble.domain.*;
import net.sourceforge.pebble.web.view.View;
import net.sourceforge.pebble.web.view.NotFoundView;
import net.sourceforge.pebble.web.view.impl.BlogEntriesByMonthView;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
import java.util.ArrayList;

/**
 * Finds all blog entries for a particular month, ready for them
 * to be displayed.
 *
 * @author    Simon Brown
 */
public class ViewMonthAction extends Action {
    //#viewmonthaction.java:53: method: void net.sourceforge.pebble.web.action.ViewMonthAction.net.sourceforge.pebble.web.action.ViewMonthAction()
    //#input(void net.sourceforge.pebble.web.action.ViewMonthAction()): this
    //#viewmonthaction.java:53: end of method: void net.sourceforge.pebble.web.action.ViewMonthAction.net.sourceforge.pebble.web.action.ViewMonthAction()

  /**
   * Peforms the processing associated with this action.
   *
   * @param request  the HttpServletRequest instance
   * @param response the HttpServletResponse instance
   * @return the name of the next view
   */
  public View process(HttpServletRequest request, HttpServletResponse response) throws ServletException {
    String year = request.getParameter("year");
    //#viewmonthaction.java:63: method: View net.sourceforge.pebble.web.action.ViewMonthAction.process(HttpServletRequest, HttpServletResponse)
    //#input(View process(HttpServletRequest, HttpServletResponse)): __Descendant_Table[net/sourceforge/pebble/web/action/ViewMonthAction]
    //#input(View process(HttpServletRequest, HttpServletResponse)): __Descendant_Table[others]
    //#input(View process(HttpServletRequest, HttpServletResponse)): __Dispatch_Table.getModel()Lnet/sourceforge/pebble/web/model/Model;
    //#input(View process(HttpServletRequest, HttpServletResponse)): net/sourceforge/pebble/web/model/Model.__Descendant_Table[net/sourceforge/pebble/web/model/Model]
    //#input(View process(HttpServletRequest, HttpServletResponse)): net/sourceforge/pebble/web/model/Model.__Descendant_Table[others]
    //#input(View process(HttpServletRequest, HttpServletResponse)): net/sourceforge/pebble/web/model/Model.__Dispatch_Table.get(Ljava/lang/String;)Ljava/lang/Object;
    //#input(View process(HttpServletRequest, HttpServletResponse)): net/sourceforge/pebble/web/model/Model.__Dispatch_Table.put(Ljava/lang/String;Ljava/lang/Object;)V
    //#input(View process(HttpServletRequest, HttpServletResponse)): request
    //#input(View process(HttpServletRequest, HttpServletResponse)): this
    //#input(View process(HttpServletRequest, HttpServletResponse)): this.__Tag
    //#input(View process(HttpServletRequest, HttpServletResponse)): this.model
    //#input(View process(HttpServletRequest, HttpServletResponse)): this.model.__Tag
    //#input(View process(HttpServletRequest, HttpServletResponse)): this.model.data
    //#output(View process(HttpServletRequest, HttpServletResponse)): new BlogEntriesByMonthView(process#4) num objects
    //#output(View process(HttpServletRequest, HttpServletResponse)): new NotFoundView(process#1) num objects
    //#output(View process(HttpServletRequest, HttpServletResponse)): return_value
    //#new obj(View process(HttpServletRequest, HttpServletResponse)): new BlogEntriesByMonthView(process#4)
    //#new obj(View process(HttpServletRequest, HttpServletResponse)): new NotFoundView(process#1)
    //#pre[1] (View process(HttpServletRequest, HttpServletResponse)): request != null
    //#pre[3] (View process(HttpServletRequest, HttpServletResponse)): this.__Tag == net/sourceforge/pebble/web/action/ViewMonthAction
    //#pre[4] (View process(HttpServletRequest, HttpServletResponse)): this.model != null
    //#pre[5] (View process(HttpServletRequest, HttpServletResponse)): this.model.__Tag == net/sourceforge/pebble/web/model/Model
    //#pre[6] (View process(HttpServletRequest, HttpServletResponse)): this.model.data != null
    //#presumption(View process(HttpServletRequest, HttpServletResponse)): java.util.HashMap:get(...)@63 != null
    //#presumption(View process(HttpServletRequest, HttpServletResponse)): net.sourceforge.pebble.domain.Blog:getBlogForMonth(...)@70 != null
    //#presumption(View process(HttpServletRequest, HttpServletResponse)): net.sourceforge.pebble.domain.Blog:getCalendar(...)@96 != null
    //#presumption(View process(HttpServletRequest, HttpServletResponse)): net.sourceforge.pebble.domain.BlogService:getBlogEntries(...)@79 != null
    //#presumption(View process(HttpServletRequest, HttpServletResponse)): net.sourceforge.pebble.domain.Month:getDate(...)@96 != null
    //#presumption(View process(HttpServletRequest, HttpServletResponse)): net.sourceforge.pebble.domain.Month:getNextMonth(...)@90 != null
    //#presumption(View process(HttpServletRequest, HttpServletResponse)): net.sourceforge.pebble.domain.Month:getPreviousMonth(...)@89 != null
    //#post(View process(HttpServletRequest, HttpServletResponse)): return_value in Addr_Set{&new BlogEntriesByMonthView(process#4),&new NotFoundView(process#1)}
    //#post(View process(HttpServletRequest, HttpServletResponse)): new BlogEntriesByMonthView(process#4) num objects <= 1
    //#post(View process(HttpServletRequest, HttpServletResponse)): new NotFoundView(process#1) num objects <= 1
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:java.util.ArrayList
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:java.util.List:iterator
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:java.util.Iterator:hasNext
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:java.util.Iterator:next
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:net.sourceforge.pebble.domain.BlogEntry:isPublished
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:org.acegisecurity.Authentication:getName
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:org.acegisecurity.context.SecurityContextHolder:getContext
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:org.acegisecurity.context.SecurityContext:getAuthentication
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:org.acegisecurity.Authentication:getAuthorities
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:org.acegisecurity.GrantedAuthority:getAuthority
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:java.lang.String:equals
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:net.sourceforge.pebble.domain.Blog:isUserInRole
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:net.sourceforge.pebble.domain.BlogEntry:isUnpublished
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:java.util.List:add
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:java.util.HashMap:get
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:java.util.HashMap:put
    //#test_vector(View process(HttpServletRequest, HttpServletResponse)): java.lang.String:length(...)@68: {0}, {1..4_294_967_295}
    //#test_vector(View process(HttpServletRequest, HttpServletResponse)): java.lang.String:length(...)@69: {0}, {1..4_294_967_295}
    //#test_vector(View process(HttpServletRequest, HttpServletResponse)): java.util.Date:after(...)@96: {0}, {1}
    //#test_vector(View process(HttpServletRequest, HttpServletResponse)): javax.servlet.http.HttpServletRequest:getParameter(...)@63: Addr_Set{null}, Inverse{null}
    //#test_vector(View process(HttpServletRequest, HttpServletResponse)): javax.servlet.http.HttpServletRequest:getParameter(...)@64: Addr_Set{null}, Inverse{null}
    //#test_vector(View process(HttpServletRequest, HttpServletResponse)): net.sourceforge.pebble.domain.Month:before(...)@92: {1}, {0}
    //#test_vector(View process(HttpServletRequest, HttpServletResponse)): net.sourceforge.pebble.domain.Month:before(...)@96: {0}, {1}
    String month = request.getParameter("month");

    Blog blog = (Blog)getModel().get(Constants.BLOG_KEY);
    Month monthly;
    if (year != null && year.length() > 0 &&
        month != null && month.length() > 0) {
      monthly = blog.getBlogForMonth(Integer.parseInt(year), Integer.parseInt(month));
    //#viewmonthaction.java:70: Warning: method not available
    //#    -- call on Month net.sourceforge.pebble.domain.Blog:getBlogForMonth(int, int)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: Month net.sourceforge.pebble.domain.Blog:getBlogForMonth(int, int)
    } else {
      return new NotFoundView();
    //#viewmonthaction.java:72: Warning: method not available
    //#    -- call on void net.sourceforge.pebble.web.view.NotFoundView()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: void net.sourceforge.pebble.web.view.NotFoundView()
    }

    BlogService service = new BlogService();
    //#viewmonthaction.java:75: Warning: method not available
    //#    -- call on void net.sourceforge.pebble.domain.BlogService()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: void net.sourceforge.pebble.domain.BlogService()

    List<BlogEntry> blogEntries = null;
    //#viewmonthaction.java:77: Warning: unused assignment
    //#    unused assignment into blogEntries
    //#    severity: SUPPRESSED
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    Attribs:  Uncertain
    try {
      blogEntries = service.getBlogEntries(blog, Integer.parseInt(year), Integer.parseInt(month));
    //#viewmonthaction.java:79: Warning: method not available
    //#    -- call on List net.sourceforge.pebble.domain.BlogService:getBlogEntries(Blog, int, int)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: List net.sourceforge.pebble.domain.BlogService:getBlogEntries(Blog, int, int)
    } catch (BlogServiceException e) {
      throw new ServletException(e);
    }
    getModel().put(Constants.BLOG_ENTRIES, filter(blog, blogEntries));
    getModel().put("displayMode", "month");
    getModel().put(Constants.MONTHLY_BLOG, monthly);

    // put the previous and next months in the model for navigation purposes
    Month firstMonth = blog.getBlogForFirstMonth();
    //#viewmonthaction.java:88: Warning: method not available
    //#    -- call on Month net.sourceforge.pebble.domain.Blog:getBlogForFirstMonth()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: Month net.sourceforge.pebble.domain.Blog:getBlogForFirstMonth()
    Month previousMonth = monthly.getPreviousMonth();
    //#viewmonthaction.java:89: Warning: method not available
    //#    -- call on Month net.sourceforge.pebble.domain.Month:getPreviousMonth()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: Month net.sourceforge.pebble.domain.Month:getPreviousMonth()
    Month nextMonth = monthly.getNextMonth();
    //#viewmonthaction.java:90: Warning: method not available
    //#    -- call on Month net.sourceforge.pebble.domain.Month:getNextMonth()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: Month net.sourceforge.pebble.domain.Month:getNextMonth()

    if (!previousMonth.before(firstMonth)) {
    //#viewmonthaction.java:92: Warning: method not available
    //#    -- call on bool net.sourceforge.pebble.domain.Month:before(Month)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: bool net.sourceforge.pebble.domain.Month:before(Month)
      getModel().put("previousMonth", previousMonth);
    }

    if (!nextMonth.getDate().after(blog.getCalendar().getTime()) || nextMonth.before(firstMonth)) {
    //#viewmonthaction.java:96: Warning: method not available
    //#    -- call on Date net.sourceforge.pebble.domain.Month:getDate()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: Date net.sourceforge.pebble.domain.Month:getDate()
    //#viewmonthaction.java:96: Warning: method not available
    //#    -- call on Calendar net.sourceforge.pebble.domain.Blog:getCalendar()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: Calendar net.sourceforge.pebble.domain.Blog:getCalendar()
    //#viewmonthaction.java:96: Warning: method not available
    //#    -- call on bool net.sourceforge.pebble.domain.Month:before(Month)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: bool net.sourceforge.pebble.domain.Month:before(Month)
      getModel().put("nextMonth", nextMonth);
    }

    return new BlogEntriesByMonthView();
    //#viewmonthaction.java:100: Warning: method not available
    //#    -- call on void net.sourceforge.pebble.web.view.impl.BlogEntriesByMonthView()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: void net.sourceforge.pebble.web.view.impl.BlogEntriesByMonthView()
    //#viewmonthaction.java:100: end of method: View net.sourceforge.pebble.web.action.ViewMonthAction.process(HttpServletRequest, HttpServletResponse)
  }

  private List<BlogEntry> filter(Blog blog, List<BlogEntry> blogEntries) {
    List<BlogEntry> filtered = new ArrayList<BlogEntry>();
    //#viewmonthaction.java:104: method: List net.sourceforge.pebble.web.action.ViewMonthAction.filter(Blog, List)
    //#input(List filter(Blog, List)): blog
    //#input(List filter(Blog, List)): blogEntries
    //#output(List filter(Blog, List)): new ArrayList(filter#1) num objects
    //#output(List filter(Blog, List)): return_value
    //#new obj(List filter(Blog, List)): new ArrayList(filter#1)
    //#pre[2] (List filter(Blog, List)): blogEntries != null
    //#pre[1] (List filter(Blog, List)): (soft) blog != null
    //#presumption(List filter(Blog, List)): java.util.Iterator:next(...)@106 != null
    //#post(List filter(Blog, List)): return_value == &new ArrayList(filter#1)
    //#post(List filter(Blog, List)): new ArrayList(filter#1) num objects == 1
    //#unanalyzed(List filter(Blog, List)): Effects-of-calling:org.acegisecurity.Authentication:getName
    //#unanalyzed(List filter(Blog, List)): Effects-of-calling:org.acegisecurity.context.SecurityContextHolder:getContext
    //#unanalyzed(List filter(Blog, List)): Effects-of-calling:org.acegisecurity.context.SecurityContext:getAuthentication
    //#unanalyzed(List filter(Blog, List)): Effects-of-calling:org.acegisecurity.Authentication:getAuthorities
    //#unanalyzed(List filter(Blog, List)): Effects-of-calling:org.acegisecurity.GrantedAuthority:getAuthority
    //#unanalyzed(List filter(Blog, List)): Effects-of-calling:java.lang.String:equals
    //#unanalyzed(List filter(Blog, List)): Effects-of-calling:net.sourceforge.pebble.domain.Blog:isUserInRole
    //#test_vector(List filter(Blog, List)): java.util.Iterator:hasNext(...)@106: {1}, {0}
    //#test_vector(List filter(Blog, List)): net.sourceforge.pebble.domain.BlogEntry:isPublished(...)@108: {1}, {0}
    //#test_vector(List filter(Blog, List)): net.sourceforge.pebble.domain.BlogEntry:isUnpublished(...)@110: {0}, {1}

    for (BlogEntry blogEntry : blogEntries) {
      if (
          blogEntry.isPublished() ||
    //#viewmonthaction.java:108: Warning: method not available
    //#    -- call on bool net.sourceforge.pebble.domain.BlogEntry:isPublished()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: List filter(Blog, List)
    //#    unanalyzed callee: bool net.sourceforge.pebble.domain.BlogEntry:isPublished()
          (
            (SecurityUtils.isUserAuthorisedForBlog(blog) && blogEntry.isUnpublished())
    //#viewmonthaction.java:110: Warning: method not available
    //#    -- call on bool net.sourceforge.pebble.domain.BlogEntry:isUnpublished()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.ViewMonthAction
    //#    method: List filter(Blog, List)
    //#    unanalyzed callee: bool net.sourceforge.pebble.domain.BlogEntry:isUnpublished()
          )
         ) {
        filtered.add(blogEntry);
      }
    }

    return filtered;
    //#viewmonthaction.java:117: end of method: List net.sourceforge.pebble.web.action.ViewMonthAction.filter(Blog, List)
  }

}    //#output(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): __Descendant_Table[net/sourceforge/pebble/web/action/ViewMonthAction]
    //#output(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): __Dispatch_Table.filter(Lnet/sourceforge/pebble/domain/Blog;Ljava/util/List;)Ljava/util/List;
    //#output(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): __Dispatch_Table.getLocalizedString(Ljava/lang/String;)Ljava/lang/String;
    //#output(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): __Dispatch_Table.getModel()Lnet/sourceforge/pebble/web/model/Model;
    //#output(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): __Dispatch_Table.process(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)Lnet/sourceforge/pebble/web/view/View;
    //#output(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): __Dispatch_Table.setModel(Lnet/sourceforge/pebble/web/model/Model;)V
    //#output(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): net/sourceforge/pebble/web/action/Action.__Descendant_Table[net/sourceforge/pebble/web/action/ViewMonthAction]
    //#post(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): __Descendant_Table[net/sourceforge/pebble/web/action/ViewMonthAction] == &__Dispatch_Table
    //#post(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): net/sourceforge/pebble/web/action/Action.__Descendant_Table[net/sourceforge/pebble/web/action/ViewMonthAction] == &__Dispatch_Table
    //#post(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): __Dispatch_Table.filter(Lnet/sourceforge/pebble/domain/Blog;Ljava/util/List;)Ljava/util/List; == &filter
    //#post(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): __Dispatch_Table.getLocalizedString(Ljava/lang/String;)Ljava/lang/String; == &net/sourceforge/pebble/web/action/Action.getLocalizedString
    //#post(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): __Dispatch_Table.getModel()Lnet/sourceforge/pebble/web/model/Model; == &net/sourceforge/pebble/web/action/Action.getModel
    //#post(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): __Dispatch_Table.process(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)Lnet/sourceforge/pebble/web/view/View; == &process
    //#post(net.sourceforge.pebble.web.action.ViewMonthAction__static_init): __Dispatch_Table.setModel(Lnet/sourceforge/pebble/web/model/Model;)V == &net/sourceforge/pebble/web/action/Action.setModel
    //#viewmonthaction.java:: end of method: net.sourceforge.pebble.web.action.ViewMonthAction.net.sourceforge.pebble.web.action.ViewMonthAction__static_init
    //#viewmonthaction.java:: end of class: net.sourceforge.pebble.web.action.ViewMonthAction
