Examples of validate()


Examples of org.jpox.store.rdbms.Column.validate()

            if (col != null)
            {
                if (validateColumnStructure)
                {
                    col.initializeColumnInfoFromDatastore(ci);
                    col.validate(ci);
                    unvalidated.remove(colName);
                }
                else
                {
                    unvalidated.remove(colName);
View Full Code Here

Examples of org.jpox.store.rdbms.table.TableImpl.validate()

                }

                if (validateTables && !columnsValidated) // Table not just created and validation requested
                {
                    // Check down to the column structure where required
                    t.validate(getCurrentConnection(), validateColumns, false, autoCreateErrors);
                }
                else if (!columnsValidated)
                {
                    // Validation not requested but allow initialisation of the column information
                    String initInfo = omfContext.getPersistenceConfiguration().getStringProperty("org.jpox.rdbms.initializeColumnInfo");
View Full Code Here

Examples of org.jpox.store.rdbms.table.ViewImpl.validate()

                        viewsCreated.add(v);
                    }
                }
                if (validateTables)
                {
                    v.validate(getCurrentConnection(), true, false, autoCreateErrors);
                }

                // Discard any cached column info used to validate the view
                columnInfoByTableName.remove(v.getDatastoreIdentifierFullyQualified());
            }
View Full Code Here

Examples of org.jreform.Group.validate()

        // validate input groups
        while(groupIter.hasNext())
        {
            group = groups.get(groupIter.next());
           
            if(!group.validate(req))
                getErrors().addAll(group.getErrors());
        }
       
        additionalValidate();
       
View Full Code Here

Examples of org.jwildfire.swing.ImagePanel.validate()

            int width = imgPnl.getBounds().width;
            int height = imgPnl.getBounds().height;
            SimpleImage img = createPartPreview(pPart, width, height);
            imgPnl.setImage(img, imgPnl.getBounds().x, imgPnl.getBounds().y, width);
            imgPnl.invalidate();
            imgPnl.validate();
            pnl.getParent().repaint();
            break;
          }
        }
      }
View Full Code Here

Examples of org.kapott.hbci.protocol.SEG.validate()

       
        // verify if segment can be created
        SEG seg=null;
        try {
            seg=createJobSegment();
            seg.validate();
        } catch (Exception ex) {
            throw new HBCI_Exception("*** the job segment for this task can not be created",ex);
        } finally {
            if (seg!=null) {
                SEGFactory.getInstance().unuseObject(seg);
View Full Code Here

Examples of org.keycloak.connections.jpa.updater.JpaUpdaterProvider.validate()

                                updater.update(connection);
                            } else {
                                logger.debug("Database is up to date");
                            }
                        } else if (databaseSchema.equals("validate")) {
                            updater.validate(connection);
                        } else {
                            throw new RuntimeException("Invalid value for databaseSchema: " + databaseSchema);
                        }

                        logger.trace("Database update completed");
View Full Code Here

Examples of org.kie.internal.runtime.manager.InternalRuntimeManager.validate()

    }

    public ProcessInstance getProcessInstance(long id, boolean readOnly) {
        InternalRuntimeManager manager = (InternalRuntimeManager) kruntime.getEnvironment().get("RuntimeManager");
        if (manager != null) {
            manager.validate((KieSession) kruntime, ProcessInstanceIdContext.get(id));
        }
      ProcessPersistenceContextManager ppcm
      = (ProcessPersistenceContextManager) this.kruntime.getEnvironment().get( EnvironmentName.PERSISTENCE_CONTEXT_MANAGER );
        ppcm.beginCommandScopedEntityManager();
 
View Full Code Here

Examples of org.kiji.schema.layout.impl.TableLayoutUpdateValidator.validate()

            "Reference layout ID %s does not match current layout ID %s.",
            update.getReferenceLayout(), currentLayout.getDesc().getLayoutId()));
      }

      final TableLayoutUpdateValidator validator = new TableLayoutUpdateValidator(mKiji);
      validator.validate(
          currentLayout,
          KijiTableLayout.createUpdatedLayout(update , currentLayout));

      final TableLayoutTracker layoutTracker =
          new TableLayoutTracker(mZKClient, mTableURI, mLayoutUpdateHandler);
View Full Code Here

Examples of org.krysalis.jcharts.chartData.interfaces.IAxisPlotDataSet.validate()

    Iterator iterator= this.getIAxisPlotDataSetIterator();

    while( iterator.hasNext() )
    {
       iAxisPlotDataSet= (IAxisPlotDataSet) iterator.next();
      iAxisPlotDataSet.validate();

      if( iAxisPlotDataSet.getNumberOfDataItems() != this.sizeOfEachDataSet )
      {
        throw new ChartDataException( "All IAxisPlotDataSet implementations must contain an equal number of elements in a Combo Chart" );
      }
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.