Examples of Record


Examples of gr.ekt.bte.core.Record

        List<String> ids = getCiNiiIDs(title, author, year, maxResults, appId);
        if (ids != null && ids.size() > 0)
        {
            for (String id : ids)
            {
                Record record = search(id, appId);
                if (record != null)
                {
                    records.add(record);
                }
            }
View Full Code Here

Examples of hu.sztaki.ilab.longneck.Record

    private Constraint referredConstraint = null;
   
    @Override
    public CheckResult check(Record record, VariableSpace scope) {
      if (mapping.hasRules()) {
            Record mapped = new MappedRecord(record, mapping);
            return referredConstraint.check(mapped, scope);
        }
       
        return referredConstraint.check(record, scope);
    }
View Full Code Here

Examples of io.fathom.cloud.compute.api.os.model.Record

    @Path("{domain}/entries/{name}")
    public WrappedRecord createRecord(@PathParam("domain") String domainName, @PathParam("name") String name,
            WrappedRecord wrappedRequest) throws CloudException {
        Project project = getProject();

        Record request = wrappedRequest.dns_entry;
        if (request == null) {
            throw new IllegalArgumentException();
        }

        // Sanity
View Full Code Here

Examples of io.fathom.cloud.openstack.client.dns.model.Record

    }

    static Record toModel(DnsRecord record) {
        DnsRecordData data = record.getData();

        Record model = new Record();
        if (data.hasTarget()) {
            model.value = data.getTarget();
        }
        if (data.hasWeight()) {
            model.weight = data.getWeight();
View Full Code Here

Examples of it.eng.spagobi.tools.dataset.common.datastore.Record

        }
       
        int recCount = 0;
        int resultNumber = 0;
        while ((recCount < maxRecToParse) && rs.next()) {
          IRecord record = new Record(dataStore);
          for(columnIndex = 1; columnIndex <= columnCount; columnIndex++) {
            Object columnValue = rs.getObject(columnIndex);
            IField field = new Field( columnValue );
          if(columnValue != null) {
            dataStoreMeta.getFieldMeta(columnIndex-1).setType( columnValue.getClass() );
          }
          record.appendField( field );
          }
          dataStore.appendRecord(record);
          recCount++;
          logger.debug("[" + recCount + "] - Records [" + rs.getRow()  + "] succesfully readed");
        }
View Full Code Here

Examples of javax.resource.cci.Record

    return execute(new InteractionCallback() {
      public Object doInInteraction(Interaction interaction, ConnectionFactory connectionFactory)
          throws ResourceException, SQLException, DataAccessException {

        Record outputRecordToUse = outputRecord;
        try {
          if (outputRecord != null || getOutputRecordCreator() != null) {
            // Use the CCI execute method with output record as parameter.
            if (outputRecord == null) {
              RecordFactory recordFactory = getRecordFactory(connectionFactory);
View Full Code Here

Examples of javolution.util.FastCollection.Record

    public void remove() {
        if (_current != null) {
            // Uses the previous record (not affected by the remove)
            // to set the next record.
            final Record previous = _current.getPrevious();
            _collection.delete(_current);
            _current = null;
            _next = previous.getNext();
        } else {
            throw new IllegalStateException();
        }
    }
View Full Code Here

Examples of javolution.util.stripped.FastCollection.Record

    public void remove() {
        if (_current != null) {
            // Uses the previous record (not affected by the remove)
            // to set the next record.
            final Record previous = _current.getPrevious();
            _collection.delete(_current);
            _current = null;
            _next = previous.getNext();
        } else {
            throw new IllegalStateException();
        }
    }
View Full Code Here

Examples of jxl.read.biff.Record

  /**
   * Dumps out the contents of the excel file
   */
  private void dump() throws IOException
  {
    Record r = null;
    boolean cont = true;
    while (reader.hasNext() && cont)
    {
      r = reader.next();
      cont = writeRecord(r);
View Full Code Here

Examples of ke.go.moh.oec.adt.data.Record

        List<Record> recordList = new ArrayList<Record>();
        for (LinkedRecord linkedRecord : linkedRecordList) {
            recordList.addAll(extractRecordList(linkedRecord));
        }
        int recordSize = 0;
        Record biggestRecord = null;
        for (Record record : recordList) {
            int rs = record.getOrdinaryCellMap().size();
            if (rs > recordSize) {
                recordSize = rs;
                biggestRecord = record;
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.