Examples of topMatch()


Examples of edu.mit.simile.fresnel.configuration.LensMatchSet.topMatch()

                  }
                  if (!match) {
                    // if none of the specified sublenses fit, check for other matches
                    LensMatchSet lenses = this._conf.getLensMatches().getMatch(objResource);
                    if (null != lenses && !lenses.isEmpty()) {
                      sublens = lenses.topMatch();
                      subr = applyLens(group, in, sublens, objResource, current + 1, max);
                    } else {
                      // or if no lenses fit, turn it into a label
                      subr.setTitle(resolveLabel(in, objResource));
                    }
View Full Code Here

Examples of edu.mit.simile.fresnel.configuration.LensMatchSet.topMatch()

                 
                  if (!matched) {
                    // if none of the specified sublenses fit, check for other matches
                    LensMatchSet lenses = this._conf.getLensMatches().getMatch(objResource);
                    if (null != lenses) {
                      sublens = lenses.topMatch();
                      Result subr = applyLabelLens(sublens, in, objResource, current + 1, max);
                      ValueResult vr = new ValueResult(subr, pr, selected.getContext());
                      pr.addValue(vr);
                      this._propertyResultModelHash.putResult(prop, pr);
                    } else {
View Full Code Here

Examples of edu.mit.simile.fresnel.configuration.LensMatchSet.topMatch()

                }
              } else {
                // if not a sublens situation, check for other matches
                LensMatchSet lenses = this._conf.getLensMatches().getMatch(objResource);
                if (null != lenses) {
                  Result subr = applyLabelLens(lenses.topMatch(), in, objResource, current + 1, max);
                  ValueResult vr = new ValueResult(subr, pr, selected.getContext());
                  pr.addValue(vr);
                  this._propertyResultModelHash.putResult(prop, pr);
                } else {
                  // or if no lenses fit, turn it into a label
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.