Examples of MatchingContext


Examples of com.griaule.grfingerjava.MatchingContext

     * prepared FingerprintMatch object.
     */
    public void prepare() {
        if (useFingerprintSdk) {
            try {
                grMatchingContext = new MatchingContext();
            } catch (GrFingerJavaException ex) {
                Logger.getLogger(FingerprintMatch.class.getName()).log(Level.SEVERE, null, ex);
            }
            try {
                grMatchingContext.prepareForIdentification(grTemplate);
View Full Code Here

Examples of com.griaule.grfingerjava.MatchingContext

        this.fingerprintingComponent = fingerprintingComponent;
    }

    private void initialize() throws MissingFingerprintManagerImpException {
        try {
            matchingContext = new MatchingContext();
            //GrFingerJava.installLicense("ZMFAG-PKWUK-CABDA-KSDJF");
            //TODO: Investigate why this line sometimes hangs
            GrFingerJava.initializeCapture(this);
            showMessage("Waiting for device.");
        } catch (GrFingerJavaException ex) {
View Full Code Here

Examples of org.aspectj.weaver.tools.MatchingContext

   *
   * @see org.aspectj.weaver.patterns.Pointcut#matchInternal(org.aspectj.weaver.Shadow)
   */
  protected FuzzyBoolean matchInternal(Shadow shadow) {
    if (shadow instanceof ReflectionShadow) {
      MatchingContext context = ((ReflectionShadow) shadow).getMatchingContext();
      org.aspectj.weaver.tools.FuzzyBoolean match = this.matcher.matchesStatically(context);
      if (match == org.aspectj.weaver.tools.FuzzyBoolean.MAYBE) {
        return FuzzyBoolean.MAYBE;
      } else if (match == org.aspectj.weaver.tools.FuzzyBoolean.YES) {
        return FuzzyBoolean.YES;
View Full Code Here

Examples of org.aspectj.weaver.tools.MatchingContext

  /* (non-Javadoc)
   * @see org.aspectj.weaver.patterns.Pointcut#matchInternal(org.aspectj.weaver.Shadow)
   */
  protected FuzzyBoolean matchInternal(Shadow shadow) {
    if (shadow instanceof ReflectionShadow) {
      MatchingContext context = ((ReflectionShadow)shadow).getMatchingContext();
      org.aspectj.weaver.tools.FuzzyBoolean match =
        this.matcher.matchesStatically(context);
      if (match == org.aspectj.weaver.tools.FuzzyBoolean.MAYBE) {
        return FuzzyBoolean.MAYBE;
      } else if (match == org.aspectj.weaver.tools.FuzzyBoolean.YES) {
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.