Examples of invalidate()


Examples of org.openbp.cockpit.modeler.figures.generic.Colorizable.invalidate()

            group.addMenuChild(new JaspiraAction(NodeItemEditorPlugin.this, "modeler.edit.resetcolor")
            {
              public void actionPerformed(ActionEvent e)
              {
                col.setFillColor(col.getDefaultFillColor());
                col.invalidate();
              }
            });
          }
        }
View Full Code Here

Examples of org.openbp.cockpit.modeler.figures.generic.XFigure.invalidate()

    shadow.setParent(null);
    shadow.setFillColor(ModelerColors.SHADOW_FILL);
    shadow.setFillColor2(ModelerColors.SHADOW_FILL);
    shadow.setFrameColor(ModelerColors.SHADOW_BORDER);
    shadow.invalidate();

    return shadow;
  }

  /**
 
View Full Code Here

Examples of org.openbp.cockpit.modeler.figures.process.ProcessElementContainer.invalidate()

    if (pec instanceof AbstractTagFigure)
    {
      ((AbstractTagFigure) pec).checkDecoratedContentState();
    }
    pec.invalidate();

    return modeler.getPluginComponent().isShowing() ? EVENT_CONSUMED : EVENT_IGNORED;
  }

  /**
 
View Full Code Here

Examples of org.openbp.jaspira.action.JaspiraToolbarButton.invalidate()

        JaspiraToolbarButton button = new JaspiraToolbarButton(action);
        button.setSelected(filter.isActive());

        toolbar.add(button);
        button.invalidate();

        // Create the configuration component if available
        JComponent filterComponent = filter.getConfigurationComponent();
        if (filterComponent != null)
        {
View Full Code Here

Examples of org.rhq.enterprise.server.auth.SessionManager.invalidate()

        } catch (Throwable e) {
            result.addFailureMessage(ThrowableUtil.getAllMessages(e, true, remainingResultSize(result)));
            return result;
        } finally {
            if (subjectWithSession != null) {
                sessionManager.invalidate(subjectWithSession.getSessionId());
            }
            if (engine != null) {
                returnEngine(engine, language);
            }
View Full Code Here

Examples of org.richfaces.application.push.Session.invalidate()

        String forgetPushSessionId = externalContext.getRequestParameterMap().get(FORGET_PUSH_SESSION_ID_PARAM);
        if (forgetPushSessionId != null) {
            Session oldSession = pushContext.getSessionManager().getPushSession(forgetPushSessionId);
            if (oldSession != null) {
                oldSession.invalidate();
            }
        }

        Session session = pushContext.getSessionFactory().createSession(UUID.randomUUID().toString());
View Full Code Here

Examples of org.springframework.mock.web.MockHttpSession.invalidate()

      DerivedTestBean bean = (DerivedTestBean) this.beanFactory.getBean(name);
      assertEquals(session.getAttribute(name), bean);
      assertSame(bean, this.beanFactory.getBean(name));

      requestAttributes.requestCompleted();
      session.invalidate();
      assertTrue(bean.wasDestroyed());
    }
    finally {
      RequestContextHolder.setRequestAttributes(null);
    }
View Full Code Here

Examples of org.springframework.mock.web.test.MockHttpSession.invalidate()

      DerivedTestBean bean = (DerivedTestBean) this.beanFactory.getBean(name);
      assertEquals(session.getAttribute(name), bean);
      assertSame(bean, this.beanFactory.getBean(name));

      requestAttributes.requestCompleted();
      session.invalidate();
      assertTrue(bean.wasDestroyed());
    }
    finally {
      RequestContextHolder.setRequestAttributes(null);
    }
View Full Code Here

Examples of org.talend.esb.monitoring.hq.DynamicMxFieldMeasurementPlugin.TrivialCache.invalidate()

    tc.put(key2, val2);
   
    assertEquals(2, tc.size());
    assertEquals(val2, tc.get(key2));
   
    tc.invalidate(key2);
   
    assertEquals(1, tc.size());
    assertEquals(val1, tc.get(key1));
    assertNull(tc.get(key2));
  }
View Full Code Here

Examples of org.tamacat.httpd.session.Session.invalidate()

   */
  protected void logoutAction(HttpRequest request, String sessionId) {
    if (StringUtils.isNotEmpty(sessionId)) {
      Session session = SessionManager.getInstance().getSession(sessionId, false);
      if (session != null) {
        session.invalidate();
      }
    }
  }
 
  /**
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.