Examples of describe()


Examples of com.dbxml.labrador.Describer.describe()

         // Retrieve the Discovery interface from the Resolver
         Discovery discovery = resolver.getDiscovery(id);

         // Stream the description to the StringWriter
         StringWriter sw = new StringWriter(BUFFER_SIZE);
         describer.describe(id, discovery, sw);
         result = sw.toString();

         synchronized ( cacheMutex ) {
            cache.put(key, result);
         }
View Full Code Here

Examples of com.esri.sde.sdk.client.SeTable.describe()

        String[] rasterColumns;
        SeTable sTable = new SeTable(scon, rasterTable);
        SeColumnDefinition[] cols;
        try {
            cols = sTable.describe();
        } catch (SeException e) {
            throw new ArcSdeException("Exception fetching the list of columns for table "
                    + rasterTable, e);
        }
        List<String> fetchColumns = new ArrayList<String>(cols.length / 2);
View Full Code Here

Examples of com.esri.sde.sdk.client.SeTable.describe()

        public SeTable execute(ISession session, SeConnection connection) throws SeException,
                IOException {
            SeTable table = new SeTable(connection, tableName);

            try {
                table.describe();
            } catch (SeException e) {
                throw new IOException("Table does not exist: " + tableName);
            }

            return table;
View Full Code Here

Examples of com.foundationdb.sql.optimizer.rule.range.ComparisonResult.describe()

        case LT_BARELY: flippedExpected = GT_BARELY;    break;
        case GT:        flippedExpected = LT;           break;
        case GT_BARELY: flippedExpected = LT_BARELY;    break;
        default:        flippedExpected = expected;     break;
        }
        String flippedName = two + " " + flippedExpected.describe() + " " + one;
        if (!flippedName.equals(name)) { // e.g. we don't need to reflect inclusive("A") == inclusive("A")
            pb.add(flippedName, two, one, flippedExpected);
        }
    }
View Full Code Here

Examples of com.franz.agbase.SPARQLQuery.describe()

    if ( query.isSelectType() ) {
      valSetIter = sq.select();
    }
    // DESCRIBE
    else if ( query.isDescribeType() ) {
      tripleIter = sq.describe();
    }
    // CONSTRUCT
    else if ( query.isConstructType() ) {
      tripleIter = sq.construct();
    }
View Full Code Here

Examples of com.getperka.flatpack.jersey.ApiDescriber.describe()

  @FlatPackResponse(ApiDescription.class)
  public ApiDescription describeGet() throws IOException {
    FlatPack flatpack = providers.getContextResolver(FlatPack.class, MediaType.WILDCARD_TYPE)
        .getContext(FlatPack.class);
    ApiDescriber api = new ApiDescriber(flatpack, Arrays.asList(DemoResource.class.getMethods()));
    ApiDescription description = api.describe();
    description.setApiName("Demo");
    return description;
  }

  /**
 
View Full Code Here

Examples of edu.umd.cs.findbugs.BugInstance.describe()

        if (storedField != null) {
            bugInstance.addField(storedField).describe("FIELD_STORED");
        }
        bugInstance.addOptionalAnnotation(variableAnnotation);
        if (variableAnnotation instanceof FieldAnnotation) {
            bugInstance.describe("FIELD_CONTAINS_VALUE");
        }

        addPropertiesForDereferenceLocations(propertySet, derefLocationSet, false);

        if (deref.isAlwaysOnExceptionPath()) {
View Full Code Here

Examples of edu.umd.cs.findbugs.BugInstance.describe()

            for (SourceLineAnnotation s : found) {
                bug.add(s);
                if (first) {
                    first = false;
                } else {
                    bug.describe(SourceLineAnnotation.ROLE_ANOTHER_INSTANCE);
                }
            }

            bugReporter.reportBug(bug);
View Full Code Here

Examples of eu.planets_project.services.PlanetsService.describe()

     */
    public ServiceDescription getServiceDescription() {
        Service service = Service.create(wsdlLocation, qName);
        PlanetsService s = (PlanetsService) service.getPort(getServiceClass());
        if ( s  != null ) {
            return s.describe();
        } else {
            return null;
        }
    }

View Full Code Here

Examples of eu.planets_project.services.PlanetsService.describe()

    public static ServiceDescription getServiceDescription( URL wsdlLocation ) {
        try {
          PlanetsServiceExplorer se = new PlanetsServiceExplorer(wsdlLocation);
            PlanetsService s = (PlanetsService) createServiceObject(se.getServiceClass(), wsdlLocation);
            if( s == null ) return null;
            ServiceDescription sd = s.describe();
            return sd;
        } catch( Exception e ) {
            log.severe("Runtime exception while inspecting WSDL: "+wsdlLocation+" : "+e);
            e.printStackTrace();
            return 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.