Examples of Execution


Examples of org.zkoss.zk.ui.Execution

   *
   * @param component
   *            target component
   */
  public static void setSelfContextComponent(Component component) {
    final Execution exec = Executions.getCurrent();
    final VariableResolver vresolver = exec.getVariableResolver();
    ((ExecutionResolver) vresolver).setSelf(component);
  }
View Full Code Here

Examples of quickdb.features20100702.model.Execution

        System.out.println("testOptimisticLock");
        this.testOptimisticLock();
    }

    public void testBeforeAfterSameClass(){
        Execution e = new Execution();
        e.setDescription("description");
        e.setValue(5);

        System.out.println(admin.save(e));

        System.out.println(22 == e.getValue());

        admin.obtain(e).If("description").equal("description").find();
        System.out.println(999 == e.getValue());
    }
View Full Code Here

Examples of quickfix.banzai.Execution

        super(executionTableModel);
    }

    public Component prepareRenderer(TableCellRenderer renderer,
                                     int row, int column) {
        Execution execution = (Execution)((ExecutionTableModel)dataModel)
                              .getExecution(row);

        DefaultTableCellRenderer r = (DefaultTableCellRenderer)renderer;
        r.setForeground(Color.black);
View Full Code Here

Examples of ratpack.exec.Execution

  }

  @Override
  @SuppressWarnings("unchecked")
  public T get() {
    Execution execution = getExecution();

    HystrixCommandCache commandCache = execution.maybeGet(HystrixCommandCache.class)
      .orElseGet(() -> {
        HystrixCommandCache cache = new HystrixCommandCache();
        execution.add(cache);
        return cache;
      });

    Object command = commandCache.get(this);
    if (command == null) {
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.