Examples of pop()


Examples of org.nlogo.api.Graphics2DWrapper.pop()

      double offset = size / 2.0;
      double x = topology.graphicsX(xcor, patchSize) - offset;
      double y = topology.graphicsY(ycor, patchSize) - offset;
      sg.translate(x, y);
      draw(sg, size);
      sg.pop();
    }

    sg.antiAliasing(false);

    return spotlightImage;
View Full Code Here

Examples of org.objectweb.asm.commons.GeneratorAdapter.pop()

      staticAdapter.mark(endPopulate);
      staticAdapter.goTo(afterCatch);

      staticAdapter.mark(catchHandler);
      // We don't care about the exception, so pop it off
      staticAdapter.pop();
      // store the reflected method in the static field
      staticAdapter.visitInsn(ACONST_NULL);
      staticAdapter.putStatic(typeBeingWoven, methodStaticFieldName,
          METHOD_TYPE);
      staticAdapter.mark(afterCatch);
View Full Code Here

Examples of org.ofbiz.base.util.IndentingWriter.pop()

        iw.write("b\nm");
        iw.newline();
        iw.write(new char[] {'1', '\n', '2'});
        iw.space();
        iw.write('\n');
        iw.pop();
        iw.write("e");
        iw.close();
        assertEquals(label, wanted, sw.toString());
    }
View Full Code Here

Examples of org.ofbiz.base.util.collections.MapStack.pop()

            } catch(IOException e) {
                Debug.logError(e, module);  
                throw new RuntimeException(e.getMessage());
            }
        }
        contextMs.pop();

    }
    /*
     * @return
     */
 
View Full Code Here

Examples of org.opencustomer.framework.webapp.panel.PanelStack.pop()

            {
                if(log.isDebugEnabled())
                    log.debug("leave panel with action > pop stack");
                   
                PanelStack panelStack = Panel.getPanelStack(request);
                panelStack.pop();
            }
           
            // fix backbutton problem of browser
            ActionConfig actionConfig = mapping.getModuleConfig().findActionConfig(panel.getActivePage().getAction());
            if(!this.isTokenValid(request) && !actionConfig.getInput().equals(mapping.getInput())) {
View Full Code Here

Examples of org.ozoneDB.data.SimpleArrayList.pop()

                            }
                        }
                    }
                }
            }
            callStack.pop();
        }
    }

    /**
        This method checks wether the given object or the object graph reachable from this given object
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.layout.process.util.BlockLevelPaginationShiftState.pop()

    InitialPaginationShiftState init = new InitialPaginationShiftState();

    BlockLevelPaginationShiftState stateCH1 = new BlockLevelPaginationShiftState();
    stateCH1.reuse(null, init, null);
    stateCH1.increaseShift(5);
    stateCH1.pop(null);

    assertEquals(5, init.getShiftForNextChild());

    BlockLevelPaginationShiftState stateCH2 = new BlockLevelPaginationShiftState();
    stateCH2.reuse(null, init, null);
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.layout.process.util.RowLevelPaginationShiftState.pop()

  {
    InitialPaginationShiftState init = new InitialPaginationShiftState();
    RowLevelPaginationShiftState stateR1 = new RowLevelPaginationShiftState();
    stateR1.reuse(null, init, null);
    stateR1.increaseShift(10);
    stateR1.pop(null);

    assertEquals(10, init.getShiftForNextChild());

    RowLevelPaginationShiftState stateR2 = new RowLevelPaginationShiftState();
    stateR2.reuse(null, init, null);
View Full Code Here

Examples of org.pentaho.reporting.libraries.base.util.FastStack.pop()

      {
        // Finish the current box context, if needed
        next = context.getNext();
        context = (RenderBox) contextStack.pop();
        alignContext.validate();
        alignContext = (BoxAlignContext) alignContextStack.pop();
      }
    }
    return alignContext;
  }
View Full Code Here

Examples of org.platformlayer.Scope.pop()

    authenticatedScope.push();
    try {
      filterChain.doFilter(servletRequest, servletResponse);
    } finally {
      authenticatedScope.pop();
    }
  }

  @Override
  public void destroy() {
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.