Examples of invalidate()


Examples of ae.sun.java2d.SurfaceData.invalidate()

            sdBackup = null;
            sdCurrent = getBackupSurface();
            // Now, invalidate the old hardware-based SurfaceData
            SurfaceData oldData = sdAccel;
            sdAccel = null;
            oldData.invalidate();
        }
        // Update graphicsConfig for the vImg in case it changed due to
        // this display change event
        vImg.updateGraphicsConfig();
    }
View Full Code Here

Examples of android.widget.ImageView.invalidate()

                        break;
                    case MotionEvent.ACTION_UP:
                    case MotionEvent.ACTION_CANCEL:
                        break;
                }
                lImgView.invalidate();
                return true;
            }
        });

    }
View Full Code Here

Examples of anvil.session.Session.invalidate()

  {
    if (request.length>1) {
      String id = request[1];
      Session session = _container.getSession(id);
      if (session != null) {
        session.invalidate();
        output.println("ok");
        output.flush();
        return;
      }
    }
View Full Code Here

Examples of ch.entwine.weblounge.common.impl.request.WebloungeResponseImpl.invalidate()

              fireRequestDelivered(request, response, site);
            }
            return;
          }
        } catch (Throwable t) {
          response.invalidate();
          String params = RequestUtils.dumpParameters(request);
          if (t.getCause() != null) {
            t = t.getCause();
          }
          logger.error("Request handler '{}' failed to handle {} {}", new Object[] {
View Full Code Here

Examples of ch.entwine.weblounge.common.request.ResponseCache.invalidate()

        logger.debug("Finished processing of {}", httpRequest.getRequestURI());
      } else {
        logger.debug("No handler found for {}", request);
        DispatchUtils.sendNotFound(request, response);
        if (cache != null)
          cache.invalidate(response);
        fireRequestFailed(request, response, site);
      }
    }
  }
View Full Code Here

Examples of com.adito.security.SessionInfo.invalidate()

                        Iterator loggedOnUserSessions = LogonControllerFactory.getInstance().getActiveSessions().values()
                                        .iterator();
                        while (loggedOnUserSessions.hasNext()) {
                            SessionInfo element = (SessionInfo) loggedOnUserSessions.next();
                            if (element.getUser().equals(user)) {
                                element.invalidate();
                            }
                        }
                        // Revoke all polices from the user
                        PolicyDatabaseFactory.getInstance().revokeAllPoliciesFromPrincipal(user);
                        udb.deleteAccount(user);
View Full Code Here

Examples of com.aelitis.azureus.ui.common.table.TableCellCore.invalidate()

      mouseDownOn = false;
      Point pt = new Point(event.x, event.y);
      mouseDownOn = getArea().contains(pt);
      TableCellCore cell = (TableCellCore) event.row.getTableCell(columnID);
      if (cell != null) {
        cell.invalidate();
        cell.refreshAsync();
      }
    } else if (event.eventType == TableCellMouseEvent.EVENT_MOUSEUP
        && mouseDownOn) {
      mouseDownOn = false;
View Full Code Here

Examples of com.aelitis.azureus.ui.common.table.TableRowCore.invalidate()

        final TableRowCore row = tv == null ? null : tv.getRow(datasources[i]);
        Utils.getOffOfSWTThread(new AERunnable() {
          public void runSupport() {
            moveFile(manager, fileInfo, ff_target);
            if (row != null) {
              row.invalidate();
            }
          }
        });
      }
    } finally {
View Full Code Here

Examples of com.alibaba.citrus.service.requestcontext.session.SessionStore.invalidate()

            // 通知所有的store过期其数据
            for (String storeName : storeNames) {
                SessionStore store = sessionConfig.getStores().getStore(storeName);

                store.invalidate(sessionID, new StoreContextImpl(storeName));
            }

            // 清除model
            if (model == null) {
                model = new SessionModelImpl(SessionImpl.this);
View Full Code Here

Examples of com.baasbox.dao.ScriptsDao.invalidate()

            }
        } catch (ScriptEvalException e){
            if (Logger.isDebugEnabled()) Logger.debug("Script installation failed: deleting");
            updateCacheVersion();
            dao.invalidate(updated);
            dao.revertToLastVersion(updated);
            throw e;
        }
        return status;
    }
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.