Examples of match()


Examples of com.sun.xml.wss.AliasSelector.match()

                                    } catch (KeyStoreException ex) {
                                        log.log(Level.SEVERE, LogStringsMessages.WSS_0813_FAILEDTO_GETCERTIFICATE(), ex);
                                        throw new RuntimeException(ex);
                                    }
                                    if ((thisCertificate instanceof X509Certificate)
                                    && selector.match(thisCertificate)) {
                                        return (X509Certificate)thisCertificate;
                                    }
                                }
                            }
                        }

Examples of com.vividsolutions.jcs.conflate.polygonmatch.FCMatchFinder.match()

        FCMatchFinder finder = settings.getMatchFinder();

        // FIXME: ignore/filter duplicate objects (i.e. same object in both sets)
        // FIXME: fix match functions to work on point/linestring features as well
        // find matches
        Map<OsmFeature, Matches> map = finder.match(refColl, subColl, monitor);
       
        monitor.subTask("Finishing match list");
       
        // convert to simple one-to-one match
        SimpleMatchList list = new SimpleMatchList();

Examples of com.volantis.devrep.repository.impl.devices.DevicePattern.match()

        if (devicePatternIterator != null) {
            while(devicePatternIterator.hasNext() && !foundMatch) {
                DevicePattern currentDevicePattern =
                        (DevicePattern)devicePatternIterator.next();

                if (currentDevicePattern.match(userAgentString)) {
                    foundMatch = true;
                    deviceName = currentDevicePattern.getDeviceName();
                }
            }
        }

Examples of com.volantis.mcs.protocols.trans.TransTableHelper.match()

        boolean canOptimize =
                h.isZero(table.getAttributeValue("border")) &&
                h.isZero(t.getAttributeValue("border")) &&
                ((rowspan == null) || "1".equals(rowspan)) &&
                ((colspan == null) || "1".equals(colspan)) &&
                h.match(table, t, "cellspacing") &&
                h.match(table, t, "cellpadding") &&
                ((width == null) || "100%".equals(width));

        if (canOptimize) {
            PropertyValues outerProps = null;

Examples of com.volantis.styling.impl.engine.selectionstates.StateMarker.match()

        if (marker == null) {
            marker = state.createStateInstance(unregisterer);
            stateMarkers.put(state, marker);
            context.getDepthChangeListeners().addListener(marker);
        } else {
            marker.match();
        }
    }

    // Javadoc inherited.
    public boolean changeDirectRelationship(boolean directRelationship) {

Examples of com.xmlcalabash.util.ProcessMatch.match()

        super.run();

        ProcessMatch matcher = null;

        matcher = new ProcessMatch(runtime, this);
        matcher.match(source.read(), getOption(_match));

        XdmNode tree = matcher.getResult();
        result.write(tree);
    }

Examples of de.scoopgmbh.copper.monitoring.client.ui.settings.AuditralColorMapping.match()

          @Override
          protected void updateItem(AuditTrailResultModel item, boolean empty) {
            if (item!=null ){
              for (int i=0;i<settingsModel.auditralColorMappings.size();i++){
                AuditralColorMapping auditralColorMapping = settingsModel.auditralColorMappings.get(i);
                if (auditralColorMapping.match(item)){
                  this.setStyle(
                      "-fx-control-inner-background: "+CSSHelper.toCssColor(auditralColorMapping.color.get())+";"
                          );

                } else {

Examples of de.tud.kom.stringmatching.gst.GST.match()

 
  private void addText(String text1, String text2, Document htmlOut, Element tdl, Element tdr){
    // match left column
    GST gst = new GST(text1);
    gst.setPreprocessingAlgorithm(new EEBOPreprocessing());
    gst.match(text2);
   
    int last1 = 0;
    for(GSTTile tile : gst.getTiles()){
      // for left column
      last1 = addTile(last1, text1, tile, htmlOut, tdl);

Examples of de.tud.kom.stringmatching.shinglecloud.ShingleCloud.match()

    // get needle
    Element elToMatch = docContainer.getElementFor(id, DocumentContainer.MASTER);
    String needle = elToMatch.getTextContent();
   
    // perform match
    sCloud.match(needle);
   
    // prepare list of matches
    double threshold = PropertiesProvider.getInstance().getRatingThresholdForProposals();
    if(type == SearchManager.TYPE_FUZZY)
      threshold = 0;

Examples of de.uniol.informatik.vlba.matchmaker.MatchmakerService.match()

* Testbench is used to test MatchmakerService with a matching request.
*/
public class Tesbench {
    public static void main(String[] args){
        MatchmakerService mw = new MatchmakerService();
        String[][] result = mw.match("de.uniol.informatik.vlba.matchmaker.implemented.OWLSMX.2", "http://localhost/queries/1.1/1personbicyclecar_price_service.owls", "min_degree=1:threshold=75");
        System.out.println("#######################");
        System.out.println("#### Result:");
        System.out.println("#######################");
        String[] service;
//        for(Iterator iter = result.iterator();iter.hasNext();){
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.