Package com.opensymphony.xwork2.ognl

Examples of com.opensymphony.xwork2.ognl.OgnlValueStackTest$Country


     * @exception   displays an error box containing the exception error message
     */
    private void jCheckBox2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jCheckBox2ActionPerformed
             
        try {
            Country country = Country.fromValue(jTextField1.getText());
            ArrayOfHolidayCode dates = getHolidaysAvailable(country);
           
            int dateSize = dates.getHolidayCode().size();
       
            System.out.println("Holidays for " + country + ":");
View Full Code Here


       
        String holiday;
        int year;
       
        try {
            Country countryCode = Country.fromValue(jTextField2.getText());
            holiday = jTextField3.getText();
            year = Integer.parseInt(jTextField4.getText());
       
            XMLGregorianCalendar date = getHolidayDate(countryCode, holiday, year);
        
View Full Code Here

       
        String start, end;
        Date startDate, endDate;
       
        try {
            Country coCode = Country.fromValue(jTextField5.getText());
            start = jTextField6.getText();
            end = jTextField7.getText();
            startDate = new SimpleDateFormat("MMMM d, yyyy", Locale.ENGLISH) {}.parse(start);
            endDate = new SimpleDateFormat("MMMM d, yyyy", Locale.ENGLISH).parse(end);
           
View Full Code Here

    private void jCheckBox5ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jCheckBox5ActionPerformed
       
        int holidayYear;
       
        try {
            Country cCode = Country.fromValue(jTextField8.getText());
            holidayYear = Integer.parseInt(jTextField9.getText());
       
            ArrayOfHoliday holidays = getHolidaysForYear(cCode, holidayYear);
            int holidaySize = holidays.getHoliday().size();
       
View Full Code Here

    private void jCheckBox6ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jCheckBox6ActionPerformed
       
        int holiYear, holiMonth;
       
        try {
            Country cCode = Country.fromValue(jTextField10.getText());
            holiYear = Integer.parseInt(jTextField11.getText());
            holiMonth = Integer.parseInt(jTextField12.getText());
       
            ArrayOfHoliday holidayByMonth = getHolidaysForMonth(cCode, holiYear, holiMonth);
            int holiSize = holidayByMonth.getHoliday().size();
View Full Code Here

public class SimpleServletConfigInterceptor extends AbstractInterceptor implements StrutsStatics {
  private static final long serialVersionUID = -595817586173434580L;

  public String intercept(ActionInvocation invocation) throws Exception {
    final Object action = invocation.getAction();
    final ActionContext context = invocation.getInvocationContext();

    if (action instanceof ServletRequestAware) {
      HttpServletRequest request = (HttpServletRequest) context.get(HTTP_REQUEST);
      ((ServletRequestAware) action).setServletRequest(request);
    }

    if (action instanceof ServletResponseAware) {
      HttpServletResponse response = (HttpServletResponse) context.get(HTTP_RESPONSE);
      ((ServletResponseAware) action).setServletResponse(response);
    }

    return invocation.invoke();
  }
View Full Code Here

  public Map<String, List<String>> getFieldErrors() {
    return validationAware.getFieldErrors();
  }

  public Locale getLocale() {
    ActionContext ctx = ActionContext.getContext();
    if (ctx != null) {
      return ctx.getLocale();
    } else {
      logger.debug("Action context not initialized");
      return null;
    }
  }
View Full Code Here

  protected ClassLoaderInterface getClassLoaderInterface() {
    if (isReloadEnabled()) return new ClassLoaderInterfaceDelegate(reloadingClassLoader);
    else {
      ClassLoaderInterface classLoaderInterface = null;
      ActionContext ctx = ActionContext.getContext();
      if (ctx != null) classLoaderInterface = (ClassLoaderInterface) ctx
          .get(ClassLoaderInterface.CLASS_LOADER_INTERFACE);
      return (ClassLoaderInterface) ObjectUtils.defaultIfNull(classLoaderInterface,
          new ClassLoaderInterfaceDelegate(getClassLoader()));
    }
  }
View Full Code Here

    public void clearActionErrors()
    {
        actionError = null;
        fieldErrors = null;
        // Remove from Session
        ActionContext context = ActionContext.getContext();
        if (context!=null)
            context.getSession().remove(LAST_ACTION_ERROR_ATTRIBUTE);
    }
View Full Code Here

    /*
     * @see org.apache.empire.struts2.action.ActionErrorProvider#getLastActionError(boolean)
     */
    public ErrorInfo getLastActionError(boolean clear)
    {
        ActionContext context = ActionContext.getContext();
        ErrorInfo error = (ErrorInfo)context.getSession().get(LAST_ACTION_ERROR_ATTRIBUTE);
        if (clear)
            context.getSession().remove(LAST_ACTION_ERROR_ATTRIBUTE);
        return error;
    }
View Full Code Here

TOP

Related Classes of com.opensymphony.xwork2.ognl.OgnlValueStackTest$Country

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.